Viewing 15 posts - 7,606 through 7,620 (of 13,882 total)
Dave R (UK) (2/3/2016)
Currently not running 2012 so not an option 🙁Really frustrated as the solution works with the one exception of multiple lines in configuration table
OK. Then you are...
February 3, 2016 at 10:20 am
I just had another idea, which may or may not work in practice.
Create a 'master' package. This package searches a specific local folder and executes any packages it finds there.
Deploy...
February 3, 2016 at 10:18 am
SQL_Surfer (2/2/2016)
February 3, 2016 at 10:13 am
Dave R (UK) (2/3/2016)
a, hopefully, quick question if I may.
I am creating packages for a client that utilises an FTP Connection Manager. I have set this up, tested...
February 3, 2016 at 10:06 am
roger.plowman (2/2/2016)
Phil Parkin (2/2/2016)
roger.plowman (2/2/2016)
Phil Parkin (2/1/2016)
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...
February 2, 2016 at 7:26 am
roger.plowman (2/2/2016)
Phil Parkin (2/1/2016)
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...
February 2, 2016 at 6:32 am
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
Viewing 15 posts - 7,606 through 7,620 (of 13,882 total)