Viewing 15 posts - 1 through 15 (of 102 total)
February 12, 2019 at 12:44 am
I will try your options and get back to you.Thank You
December 19, 2018 at 7:04 pm
When the data is getting loaded from a Table to another table. Temp file location in Windows is getting filled up and SSIS package is failing.
Tried to use BlobTempStoragePath...
December 19, 2018 at 5:48 am
Joe,
Thank You very much for the Help. It worked like a charm.
August 20, 2018 at 7:49 pm
Msg 156, Level 15, State 1, Procedure vw_TestC, Line 2
Incorrect syntax near the keyword 'CREATE'.
August 20, 2018 at 4:42 pm
create table dbo.#QueryResults
(
QResults VARCHAR(MAX)
)
INSERT INTO dbo.#QueryResults(QResults)
select
'CREATE VIEW ' + 'vw_' + t.name + CHAR(13) + 'AS ' + CHAR(13) + 'SELECT * ' +...
August 20, 2018 at 4:42 pm
DECLARE @SourceDB SYSNAME ;
DECLARE @TrgtDB SYSNAME
SET @SourceDB = 'DatabaseA'
SET @TrgtDB = 'DatabaseB'
DECLARE @CreateViewStatement NVARCHAR(MAX)
SET @CreateViewStatement = '
USE '+ QUOTENAME(@TrgtDB) +';
...
August 20, 2018 at 4:40 pm
The issues is in the schema. I was able to find it and fix it.
May 28, 2016 at 2:25 am
I had given select permissions on Object 'projects',database 'SSISDB',schema 'catalog' . But that did not help either
May 24, 2016 at 3:57 pm
I got the issue resolved by running as an admin user.
Thank You for looking into the Issue.
March 5, 2016 at 11:09 pm
Structure of the Table in the database is same as the table in the spreadsheet
March 3, 2016 at 8:24 pm
I was able to deploy the package using ISDeploymentWizard.exe on the destination server. There is a flat file which is used as a source in the package. when the...
November 3, 2015 at 3:40 pm
Hi Scott,
The code is using left outer join. The code is working. But i am not getting the exact count of the data.
Thank You very much for looking into this.
Thank...
February 21, 2014 at 1:03 pm
Hi,
I am converting the code into Netezza. Netezza doesnt like the correlated sub queries.
Thank You,
February 19, 2014 at 5:08 pm
Viewing 15 posts - 1 through 15 (of 102 total)