Viewing 15 posts - 1,396 through 1,410 (of 1,838 total)
Craig-315134 (8/21/2013)
August 21, 2013 at 10:53 am
Jeff Moden (8/13/2013)
Outstanding step by step article but (to cover the headline) I'm pretty sure that encryption and decryption Is possible in SQL Server. 🙂
While it's possible to encrypt data...
August 13, 2013 at 9:58 am
Andrew-H (8/7/2013)
August 7, 2013 at 11:00 am
GPO (8/7/2013)
August 7, 2013 at 10:58 am
jjeffryes (7/26/2013)
That was amusing. I expecially liked "Scans." Life is like that.
Of course you realize that it would be more efficient to build your pantry clustered index based on a...
July 26, 2013 at 10:18 am
I agree with the editorial. After all, if I had to manually do things on each of my dozen servers every day, I'd be more likely to miss one...
March 25, 2013 at 10:07 am
What might be a better way to do it is using the Object Explorer Details window in Management Studio. If you click on the Databases folder in Object Explorer,...
March 15, 2013 at 7:18 am
I actually record the wait stats on my main OLTP instance into a special DBA only database and reset them every hour. After about 2 and a half years...
March 15, 2013 at 6:30 am
To know if blocking was the issue, you would have had to check the running requests using sys.dm_exec_requests or look for waiting locks in sys.dm_tran_locks before you stopped the job....
March 15, 2013 at 6:16 am
Adam Bean (3/14/2013)
March 14, 2013 at 9:41 am
Adam Bean (3/13/2013)
March 13, 2013 at 3:39 pm
sqlfriends (3/13/2013)...when granting execute on schema, what does execute mean?
execute stored procedures,
how about functions and triggers etc?
Thanks
EXECUTE privilege is for stored procedures and scalar functions
SELECT privilege would be for...
March 13, 2013 at 1:50 pm
Grant Fritchey (3/13/2013)
March 13, 2013 at 1:42 pm
sqlfriends (3/13/2013)
...They may need to read and write and also execute stored procedures in the databases...
Typically when it comes to security you want to grant the least privileges that the...
March 13, 2013 at 12:21 pm
Jerry_Manioci (3/12/2013)...and simply added OPTION (FORCE ORDER) at the end of the query. It ran in record time in both test and production...
Yep, the joy of cost based optimizers. ...
March 13, 2013 at 10:50 am
Viewing 15 posts - 1,396 through 1,410 (of 1,838 total)