Viewing 6 posts - 1 through 6 (of 6 total)
GRANT SELECT, UPDATE, INSERT, DELETE, ALTER ON [schema].[tablename] TO [username];
May 6, 2015 at 1:48 pm
Could be that the index on Modified_date is not selective enough. Or, that statistics are outdated and the optimizer just thinks that it is not selective enough.
Try sp_updatestats to see...
May 6, 2015 at 10:53 am
Input parameter validation and TRY...CATCH blocks are a great start
April 21, 2015 at 12:57 pm
From the docs:
"A return code of 0 means success. Any other value means failure. The error code for the statement that failed is stored in the @@ERROR variable."
That really means...
November 3, 2014 at 11:39 am
Thank you!
February 3, 2014 at 6:51 am
Thank you for the reply.
The issue is that the underlying tables are indeed on separate instances.
The distributed partitioned view references tables on two servers (will be 4 in production).
Accessing the...
January 31, 2014 at 9:03 am
Viewing 6 posts - 1 through 6 (of 6 total)