Viewing 8 posts - 1 through 8 (of 8 total)
I am really trying to update the scripts to support the newer SQL versions and...
January 22, 2019 at 11:33 am
For example... If I create the following stored procedure:
create procedure test
as
select * from sys.databases waitfor delay '00:00:30'
and then run this:
declare @rc int
exec @rc=sp_exec_init 8
if (@rc=0)...
May 18, 2014 at 2:01 pm
This is great, useful code. Thanks for sharing. Are there any limitations with calling stored procedures? I have an index management proc which I want to run in parallel calls....
May 18, 2014 at 8:36 am
Here is a code snippet. This is just a small bit of code. Some have many more joins with many of these function calls in the joins and in the...
January 31, 2011 at 2:50 pm
Here is a code snippet. This is just a small bit of code. Some have many more joins with many of these function calls in the joins and in the...
January 31, 2011 at 2:48 pm
Good article. Nice explanation of how to evaluate read operations vs write operations to determine a good fillfactor.
I have typically used this method to set index fillfactor on a per...
December 16, 2010 at 7:50 am
Nice content. Thanks. I agree, this method is not a fixall or a substitution for poor design. However, given certain scenarios, it is very useful and a concise way to...
September 22, 2010 at 8:52 am
OK I installed the 64bit MDASQL provider, SQL Server 2K8 SP1. The provider shows. I am able to create the linked server, but when I try to access Sybase, I...
August 5, 2009 at 9:44 am
Viewing 8 posts - 1 through 8 (of 8 total)