Viewing 15 posts - 5,911 through 5,925 (of 13,874 total)
I have an SSIS package that outputs a .csv file to a folder on an internal...
February 20, 2017 at 9:49 am
I am a power shell newbie , looking to import SQL server version information...
February 17, 2017 at 1:17 pm
February 17, 2017 at 6:42 am
February 16, 2017 at 2:22 pm
February 16, 2017 at 2:18 pm
Note that having mega packages which do everything is generally regarded as a bad design practice. When things go wrong, errors become difficult to track down and solve and maintenance...
February 16, 2017 at 2:16 pm
My SSIS project, developed in Visual Studio 2012 under my Windows user account, includes two packages,...
February 16, 2017 at 1:13 pm
I have created a SSIS project. In that I have created 3 dtsx packages (Mastertable.dtsx ,...
February 16, 2017 at 1:11 pm
February 16, 2017 at 12:11 pm
Change your proc to access a 'how many?' parameter and then use something like this:
DECLARE @n INT = 10;
SELECT TOP (@n) RAND(CHECKSUM(NEWID()))
FROM (VALUES(0),(0),(0),(0),(0),(0),(0),(0),(0),(0)) a(n)
February 16, 2017 at 11:25 am
February 16, 2017 at 10:45 am
SSIS dateadd/datediff syntax is different from that in T-SQL. You could try this:
DATEADD("m", DATEDIFF("m", (DT_DATE) 0, DATEADD("d",-1,getdate())), (DT_DATE) 0)
Replacing Getdate() with your date, of course.
February 16, 2017 at 7:34 am

During in-place upgrade I got...
February 16, 2017 at 5:37 am
I have tried several things and it's not doing quite what I need it to.
So...
February 16, 2017 at 5:34 am
I am working on one SSIS package, which convert CSV file to SQL table. But somehow,...
February 15, 2017 at 6:58 am
Viewing 15 posts - 5,911 through 5,925 (of 13,874 total)