Viewing 15 posts - 271 through 285 (of 5,111 total)
What about if that file is not removed from the folder at the end of the day and another is not put in its place... will it not reprocess...
July 6, 2021 at 2:19 pm
That is just one issue, and the error message seems clear. This is running on the server and therefore (presumably) it cannot access that path when it runs.
Ideally, you...
July 2, 2021 at 4:10 pm
None of them, the above link is for installing SQL Server 2014 Express at SP3, not updating an existing instance to SP3. You want Microsoft® SQL Server® 2014 Service...
July 2, 2021 at 1:27 pm
You are correct, the problem is the hyphen. You will need to delimit identify the object name: [DT-SERVICES-TEST]
.
June 30, 2021 at 2:01 pm
Have a read of Jeff Moden's articles Cross Tabs and Pivots. They explain exactly how to achieve what you're after.
June 30, 2021 at 11:30 am
ISNULL
returns the data type of the first parameter.The first parameter of your ISNULL
function is NULLIF('','')
which if we use dm_exec_describe_first_result_set
we can see returns a varchar(1)
. As a...
June 28, 2021 at 2:52 pm
As you suggest, the /passive flag on the command line bypasses the restriction.
Why have I only just discovered this... Literal head desk moment...
June 23, 2021 at 11:30 am
Hi Thom A, sorry if did not make my reply clear. My question is : While running AllMySPs, if SP1 encounters some error and fails, then the following statements...
June 22, 2021 at 11:24 am
But, again, coming back to my original question --> How do I make sure that ALL the SPs are at least attempted to run sequentially ? Thanks in advance.
What...
June 22, 2021 at 10:44 am
Have you got both the 32- and 64- bit versions of the drivers installed?
(SSDT uses the 32-bit version and (by default) DTExec will use the 64-bit version – might...
June 21, 2021 at 3:18 pm
Dynamic SQL is the only way to go, as Phil says. So one way would be like so:
DECLARE @SQL nvarchar(MAX),
...
June 17, 2021 at 3:09 pm
Seems like, ideally, you'd be best added a "ModifiedDate" column to your data, which has both a default value populated with the current date and time, and then when you...
June 14, 2021 at 2:04 pm
Brief tangent into real SQL stuff...
Has anyone ever heard of table triggers not firing for every row if you do set-based updates to records?
Our vendor sent us code for...
June 14, 2021 at 2:00 pm
So do I still need the Script Task with the C# Code?
Depends if you need to do what you need to do in the script task. You're using it...
June 8, 2021 at 4:04 pm
Viewing 15 posts - 271 through 285 (of 5,111 total)