Viewing 15 posts - 6,421 through 6,435 (of 13,877 total)
Thank you for the detailed response, whenriksen.
You are right in thinking that this is for a work-queue table ... in this case, for queues of SSIS packages waiting to be...
October 30, 2016 at 1:09 pm
arkiboys (10/28/2016)
Phil Parkin (10/28/2016)
arkiboys (10/28/2016)
Thom A (10/26/2016)
October 28, 2016 at 11:48 am
arkiboys (10/28/2016)
Thom A (10/26/2016)
Instead of using variables in the child package, use parameters. You can then pass the variables within the parent package as parameters to the child.
Hello,
What topic does...
October 28, 2016 at 11:22 am
Phil Parkin (10/28/2016)
If you look at the Excel connection string, is it using JET or ACE drivers?
I just tested using 2013 ACE drivers and, even there, there is a 256-column...
October 28, 2016 at 9:00 am
If you look at the Excel connection string, is it using JET or ACE drivers?
October 28, 2016 at 8:46 am
Lynn Pettis (10/28/2016)
October 28, 2016 at 8:33 am
ranala (10/28/2016)
we are developing SSIS ETL assets using visual studio 2010 , MS SQL Server version as 2012. my client is asking about language translations from Chinese,french,Spanish...
October 28, 2016 at 6:38 am
kyagi.jo (10/28/2016)
October 28, 2016 at 5:39 am
quinn.jay (10/27/2016)
I'm new'ish to SQL Server and taking over an new/recent SQL Server 2012 with SSIS and SSAS, and VS 2013 w/DT. All development, testing and production occur on this...
October 27, 2016 at 12:58 pm
philand3 (10/27/2016)
I would like to get query with page break which after each group(preffered_name) results end, my sample code given below which gives without page break ..
SELECT preffered_name ,ci.person_num,...
October 27, 2016 at 8:29 am
I suggest that you replace these rows
EXEC dbo.s_DropTempDBTable '#Error';
GO
with this
IF OBJECT_ID('tempdb..#error', 'U') IS NOT NULL
DROP TABLE #error;
October 27, 2016 at 7:16 am
Out of interest ... Temp tables get dropped automatically by the system ... why are you trying to do this manually?
October 27, 2016 at 7:13 am
Eirikur Eiriksson (10/26/2016)
homebrew01 (10/26/2016)
October 26, 2016 at 1:55 pm
October 26, 2016 at 11:31 am
mcfarlandparkway (10/26/2016)
Solution
Good luck with that, as you've given us neither the text nor the expression.
October 26, 2016 at 11:29 am
Viewing 15 posts - 6,421 through 6,435 (of 13,877 total)