Viewing 15 posts - 2,881 through 2,895 (of 5,111 total)
October 13, 2017 at 4:42 am
October 13, 2017 at 2:50 am
October 12, 2017 at 11:29 am
Sorry, I hadn't noticed that this was all being run locally, so no, network guy is the wrong person.
If, however, the OP can use DTExec to do it,...
October 12, 2017 at 11:13 am
Duplicate of https://www.sqlservercentral.com/Forums/1902189/SQL-Server-what-XML-part-of-query-is-doing-for-XML-experts
October 12, 2017 at 10:14 am
October 12, 2017 at 9:29 am
Sorry for late reply.
If you're using T-SQL to run the task, however, then I'm pretty confident that the problem is our old friend "Mr Double-hop" (Phil, would you...
October 12, 2017 at 9:28 am
You're attempting to set the value of the variable @ret outside the CASE statement, and inside. Remove the assignment of the variable inside the sub-queries and it'll work fine.
October 12, 2017 at 8:43 am
That's a handy little node Microsoft have added to SSMS (17.3). They've put "XE profiler" at the bottom of the objects for a serve. Effectively does the job of profiler...
October 12, 2017 at 6:24 am
You need to have permissions on the SQL Server instance, not on your local machine (the permmissions on your local machine are totally different to that on the instance).
October 12, 2017 at 4:48 am
I tend to do a create my own on when ordering, depending on what my mood is. Normally, however, the "mold" starts with Stuffed Crust, BBQ Base, Chillies (or Jalapeños...
October 12, 2017 at 2:32 am
Because you're trying to pass multiple rows to a single row UPDATE. This is much like doing:CREATE TABLE #Sample (string char(1));
INSERT INTO #Sample
VALUES (NULL);
October 12, 2017 at 2:08 am
I'd hazard a that it's permissions. How are you running the task on your laptop, via agent, T-SQL or navigating to the SSIS Catalog?
October 11, 2017 at 1:27 pm
Viewing 15 posts - 2,881 through 2,895 (of 5,111 total)