Viewing 7 posts - 1 through 7 (of 7 total)
That's done it, thanks!
The smiley face emoji threw me for a bit until I looked up the net use syntax!
January 23, 2018 at 9:24 am
You might also want to check the memory limitations for your edition and version before you start throwing too much memory at the problem:
https://msdn.microsoft.com/en-us/library/ms143685(v=sql.105).aspx
Although obviously...
February 7, 2017 at 9:16 am
January 13, 2017 at 8:00 am
Thanks Ness but I don't think that solves my problem. The user has the exact same permissions (member of db_datareader only) on another database on the same instance and is...
May 20, 2016 at 7:44 am
Hi, I appreciate this is a pretty old thread but did you ever get to the bottom of this? I'm experiencing the same issue - a user is a member...
May 20, 2016 at 5:52 am
Hi Stan
Really useful article, thanks.
I have a question around the long term use of this solution. I've done a bit of testing and the subscription still seems to work even...
July 9, 2015 at 2:49 am
try this...
DECLARE @ORDER TABLE (SUPPLIERID INT,
ORDERPRIORITY INT,
STOCK INT)
INSERT INTO @ORDER VALUES (1, 1, 5), (2, 2, 4), (3, 3, 51)
SELECT * FROM @ORDER
DECLARE @QUANTITY INT...
April 10, 2014 at 9:19 am
Viewing 7 posts - 1 through 7 (of 7 total)