Viewing 15 posts - 646 through 660 (of 13,445 total)
i believe the specific error/issue is here:@command1='INSERT #Sou
it has to be marked with...
January 24, 2017 at 10:31 am
is your file name you are writing to dynamic? Did you modify your flat file destination to have an expression that points to what the dynamic file name should be?
January 23, 2017 at 2:28 pm
you said I opened a new query window and ran this:
select convert(nvarchar(64),context_info())
the context_info is session specific, similar to a temp table.
so if i call a...
January 23, 2017 at 1:37 pm
duplicate post.
no need to cross post to multiple forums it fractures the answers you get and makes posters duplicate others work.
the "Latest Posts" link shows us everything.
continue...
January 23, 2017 at 8:21 am
the classic way would be to use GROUP BY HAVING count > 1
SELECT
Col1,Col2,Col3,Col10Or12
FROM
YourTable
GROUP BY Col1,Col2,Col3C,Col10Or12
HAVING COUNT(*) >...
January 20, 2017 at 1:04 pm
if you can modify the stored procedure, you could populate the VARBINARY(128) CONTEXT_INFO property.
that value is session based, i believe, so if the application calls a proc, and...
January 20, 2017 at 7:56 am
how to monitor DBmail, I mean in terms of audit if the...
January 19, 2017 at 2:43 pm
if the referenced table has a specific column name (in the example [StatisticsName]), this will find all objects that are referencing the object(ie table) in question.
...
January 19, 2017 at 10:20 am
using row number is how i would find the dupes.
the query i'm using here can be switced to a delete by simply swapping the commenting the --DELETE and commenting...
January 18, 2017 at 11:56 am
you can end up getting the empty "toolbox" from visual studio, which IS NOT THE SAME as the ssis toolbox.
there's always a shortcut for the SSIS toolbox and SSIS variables...
January 17, 2017 at 1:26 pm
Additionally, shouldn't it say that it wrote 0 rows if it could not write to the file?
I think the Flat File Connection Manager will create a...
January 17, 2017 at 8:32 am
you said it occurs when the package is run on the server, by the proxy or service account, right? or by another, specific user.....
check the permissions on the...
January 17, 2017 at 7:18 am
you'll need to use good old fashioned strings or REPLACE functions.
and you need to take into account the data types....you said number, but is it a string representing a...
January 16, 2017 at 1:08 pm
look in the windows event logs;
you might see something like the network guys installing patches, which required a reboot;
look deeper into the sql server log, specifically at...
January 16, 2017 at 12:38 pm
Does changing ownership of an object require an instance reset, or can it be done...
January 16, 2017 at 12:15 pm
Viewing 15 posts - 646 through 660 (of 13,445 total)