Viewing 15 posts - 601 through 615 (of 5,111 total)
I declared a variable to hold the file to pass to send mail task. I had a given a value like 'The value is generated by scrip task' to...
January 7, 2020 at 3:46 pm
You can't use IS NULL in a CASE expression using the CASE {value} WHEN {expression} format; you must use the CASE WHEN {value} = {expression} style syntax:
USE...
January 6, 2020 at 4:31 pm
For the sake of completeness, CHOOSE() ignores errors too, until you access this value
I suspect that because it uses the same logic as a CASE expression, which does the...
January 6, 2020 at 4:29 pm
Think it would be worth mentioning in the Explanation that the return type is determined by data type precedence; in case someone wonders why it isn't 3, due to the...
January 6, 2020 at 1:00 pm
so less than 100K. you have to take into consideration what the max value for a column might be when you create the field, as well as when you...
January 6, 2020 at 12:50 pm
This sounds more like a user problem than anything. Perhaps you would be better putting in some validation in the Excel Document as well; for example not letting people type...
January 6, 2020 at 12:42 pm
Also, it's not decimal (10.5) it's decimal(10,5), you need a comma(,) between the precision and scale.
The document that John linked to should tell you all you need, but if there...
January 6, 2020 at 12:37 pm
Back in the land of the connected (spent the last 2 weeks in the bush, in the middle of nowhere (no mobile connectivity)).
Nice reminder of the intricacies of the...
January 6, 2020 at 9:50 am
Is this a cross post of your question here? https://www.sqlservercentral.com/forums/topic/bcp-33
January 5, 2020 at 11:33 am
What does this have to do with BCP? BCP means Bulk Copy Program; it doesn't perform DDL changes likes these, it's for data migration from one location to another.
If you...
January 5, 2020 at 11:23 am
Why not use agent to run your SSIS package?
January 4, 2020 at 7:23 pm
This, therefore, appears to be what you're after (guessing):
WITH YourTable AS(
SELECT V.TraceableItemID,
RTRIM(V.Title)...
January 3, 2020 at 2:30 pm
Make sure you put the data in a code block, otherwise yes the formatting will be lost.
And I recommend a Cross Tab regardless. The type of data (or the data...
January 3, 2020 at 1:22 pm
Images of the data really don't help us, I'm afraid. We can't consume the information and you shouldn't expect us to transcribe it.
Personally, if you do need to Pivot your...
January 3, 2020 at 12:57 pm
Do you need R and Python? If not, don't install them. If you do, what is the error?
January 3, 2020 at 11:46 am
Viewing 15 posts - 601 through 615 (of 5,111 total)