Viewing 15 posts - 646 through 660 (of 5,111 total)
You should actually have 2 different versions of this, one for nvarchar and another for varchar. A varchar over the length of 1billion~ characters would be truncated when it is...
December 5, 2019 at 11:31 am
p.s. I've also adopted the policy of NVO (No Verbal Orders), especially for "urgencies". It there's not a well documented ticket to support the urgency, it doesn't get done. ...
December 5, 2019 at 9:20 am
Gracias por responder. El parametro @ ParmDefinition Es una variable Unicode exigida por el procedimiento sp_executesql. Desde tu perspectiva, estoy seguro que no es una invocacion a otro store...
December 4, 2019 at 8:05 pm
As for "real" keys, are you serious??? Unique index, possibly a constraint for validation (for keys that have some regular pattern or rules) and boom, done. Move on. How...
December 3, 2019 at 2:29 pm
What is the best practice in SSIS to handle that situation?
Tell your connection manager your text is Quote Identified (with the " character); it's an simple as that. Then...
December 3, 2019 at 12:36 pm
December 3, 2019 at 12:02 pm
Set the value of the Quote Identifier to " in your connection manager; then refresh the columns.
December 3, 2019 at 11:55 am
Honestly, I don't really trust converters. You're far better off doing this yourself. Yes, it might seem like a longer task, but converters make mistakes, can't replicate certain behaviour, or...
December 2, 2019 at 11:37 am
Updated to no longer assume, all tables have an IDENTITY property column:
USE UNFI_WEST_F;
GO
DECLARE @SQL nvarchar(MAX),
@CRLF nchar(2) = NCHAR(13) +...
November 29, 2019 at 9:24 am
Is there a reason you can't launch the Powershell window as a different user?
November 28, 2019 at 4:45 pm
How did you execute the package? Did you right-click and select 'Execute Task' by any chance?
Also, if you double-click on the precedence constraint (the line between the two tasks),...
November 28, 2019 at 4:43 pm
Have a look at the progress pane, rather than the Debug window.
November 28, 2019 at 4:13 pm
An oversight.
Fair enough, we all do them. Took me 20 minutes to work out that i'd typed 2 instead of 1 in a statement earlier, and couldn't for the...
November 28, 2019 at 12:49 pm
There are probably several ways of doing this. One approach is something like this:
Why omit QUOTENAME in the initial statement?
Personally, I would do it like this, and not just...
November 28, 2019 at 11:34 am
If you don't want underscores in your final value, why are you replacing " " with "_"? That's like saying you don't want a blue car, you want a red...
November 27, 2019 at 4:59 pm
Viewing 15 posts - 646 through 660 (of 5,111 total)