Viewing 15 posts - 7,606 through 7,620 (of 13,876 total)
There is an alternative (and better, because no temp tables are involved) way of doing this.
In your OLEDB Source, enter the following in the SQL command text:
EXEC msdb.dbo.sp_get_sqlagent_properties
with result...
February 2, 2016 at 6:21 am
roger.plowman (2/1/2016)
below86 (2/1/2016)
roger.plowman (2/1/2016)
"Instant fail.
You NEVER EVER EVER put a change into production without going through development/QA/approval/whatever.
NEVER.
Here is the reason I would NEVER EVER want to be on call for...
February 1, 2016 at 4:36 pm
only4mithunc (2/1/2016)
February 1, 2016 at 11:47 am
only4mithunc (2/1/2016)
I have one more question.. if there are two result sets like below, is there any way map them in SSIS?
EXEC dbo.GetOrderInfo...
February 1, 2016 at 11:06 am
Sean Lange (2/1/2016)
February 1, 2016 at 8:50 am
Here is a formatted version.
create FUNCTION isArbeitstag ( @cDatum DATETIME
, ...
February 1, 2016 at 8:05 am
Instead of that, strip out the outer EXEC:
EXEC dbo.UseTempTable [params here]
WITH RESULT SETS
( ( ColInt INT NOT NULL, ColVarChar VARCHAR(99)) )
February 1, 2016 at 7:28 am
2000t (2/1/2016)
"a DBA say that the true version of the code is always in production."Hmm, I heard this claim before. However, the production version was broken.
So what? It's still...
February 1, 2016 at 7:26 am
Well done on solving your problem.
Generally though, we aren't big fans of two of the techniques you have employed here: namely WHILE loops and scalar functions, for performance reasons.
Should you...
February 1, 2016 at 6:23 am
I'm with the DBA: the true version of code is what's in Production.
And if your development and release processes are strict enough, the version in SC will match what's in...
February 1, 2016 at 6:13 am
only4mithunc (2/1/2016)
This is case can some one tell me what would be the syntax if the Stored Procedure has got some input / put put parameter?
What have you tried so...
February 1, 2016 at 6:06 am
Hugo is heading in the right direction. This is quite tricky. Here is an outline solution.
Create a flat file connection pointing to your source file. Set the connection to have...
January 30, 2016 at 9:22 am
What do you mean by the following?
tried to create a merge
January 28, 2016 at 12:07 pm
Lynn Pettis (1/28/2016)
I fixed the code I...
January 28, 2016 at 12:01 pm
Lynn Pettis (1/28/2016)
January 28, 2016 at 10:30 am
Viewing 15 posts - 7,606 through 7,620 (of 13,876 total)