Viewing 15 posts - 2,701 through 2,715 (of 7,168 total)
A Transformation Script Component in your Data Flow Task should work fine. This article explains the technique well in that it creates two output streams, one for rows containing numeric...
December 13, 2012 at 11:06 pm
But you do have access to read the SQL that is run. You can setup an Extended Events session or a Server-side Trace to capture all SQL statements issued against...
December 13, 2012 at 10:40 pm
Do you have logging in place that tells you exactly which task (and command) is executing when it begins hanging?
Are you using File System Tasks or some other method to...
December 13, 2012 at 11:22 am
kramaswamy (12/13/2012)
December 13, 2012 at 11:19 am
peter-661823 (12/13/2012)
I looked at the growing Events as told in the link, with the script
ECLARE @path NVARCHAR(260);
SELECT @path = REVERSE(SUBSTRING(REVERSE([path]), CHARINDEX('\',...
December 13, 2012 at 9:59 am
jeetsingh.cs (12/13/2012)
See you can also try to give access permission on master and grant on sp_executesql..
That is not likely to help. All server logins automatically get a database user created...
December 13, 2012 at 9:48 am
tempdb can also grow due to maintenance jobs, e.g. if CHECKDB spills. Have you established a timeline when tempdb does most of its growing? If it is happening during a...
December 13, 2012 at 12:47 am
I use option 2 all the time using a login-less Database User. This way the procedure executes as a Database User with elevated permissions but no one can ever connect...
December 13, 2012 at 12:38 am
aaron.reese (12/12/2012)
I have an SSIS package that currently bulk inserts 21 files using SQL Tasks that all call a stored proc. The sp takes 5 variagles (db, schema,...
December 13, 2012 at 12:24 am
There are lots of reasons why an SSIS package can hang. The fact that when you kill the job yet the instance of dtexec.exe persists means you have something going...
December 13, 2012 at 12:06 am
This SSC article covers this topic well and shows both the window function method and the cross apply method:
Returning the Top X row for each group (SQL Spackle) by Dave...
December 12, 2012 at 9:42 pm
There is no one-size-fits-all collation. If you are asking because some of your characters appear to have been eaten by SQL Server and replaced with question marks when you store...
December 12, 2012 at 9:25 pm
opc.three (12/12/2012)
December 12, 2012 at 4:03 pm
It would be advisable to create User-defined Database Roles, add your Database Users to the Roles, and only grant permissions or Fixed Role Membership to those Roles. The Roles will...
December 12, 2012 at 11:24 am
Viewing 15 posts - 2,701 through 2,715 (of 7,168 total)