Viewing 15 posts - 1 through 15 (of 28 total)
Jason-299789 (6/19/2013)
I agree the bulk insert method is the better way, especially with the One off lock on the destination table, rather than the 700 million...
June 19, 2013 at 9:03 am
Jason-299789 (6/18/2013)
As you have...
June 18, 2013 at 11:32 am
Hi Mike,
Thanks for the nice discussion.
This was indeed a real...
June 18, 2013 at 9:56 am
Hi Chris,
Thanks for the nice feedback.
I appreciate...
November 22, 2011 at 3:04 pm
"Is it really necessary to include the database name in all object references? I've always included schema.object but not database name as it's impossible to deploy the same code base...
July 7, 2011 at 11:42 am
After a restore and after having created all the necessary indexes, try using the following code on your database:
exec sp_MSforeachtable 'update statistics ? with FullScan, Norecompute'
Best Regards,
Suresh.
July 7, 2011 at 11:31 am
Dear reader,
What I meant by thae statement is the following:
Usually developers tend to use TSQL from their application...
July 7, 2011 at 11:08 am
Hi Boris,
The system stored procedure, sp_estimate_data_compression_savings for Microsoft SQL Server 2008 has already been mentioned and used in the article to get an estimate of...
June 22, 2011 at 12:16 pm
Is it Steven Lugan? Thanks for your comments on the article. I don't have your number. I would be gald to call you or you can reach me at 214-300-8995.
April 13, 2011 at 1:33 pm
For SQL Server 2005, the syntax would be:
select record_count / page_count
from sys.dm_db_index_physical_stats(392, 1598628738, null, Null, 'DETAILED')
where index_level = 0
The details are given in the same article as to...
November 18, 2010 at 3:47 pm
First of all, I must thank everybody for their valuable comments and insights on this article. During the past several years, I had come across several situations where duplications came...
September 26, 2010 at 10:04 am
To keep you variables alive, sp_executesql could be preferable to EXEC.
February 11, 2010 at 12:06 pm
select * from openrowset ('Microsoft.Jet.OleDB.4.0', 'Excel 8.0;Database=D:\MyExcel.xls;', 'select * from [Sheet1$]')
The $ sign is mandatory. Even if you sheet name has spaces or special characters, the square brackets would handle...
February 11, 2010 at 11:29 am
a.] The advanced SQL Server configuration option 'Ad Hoc Distributed Queries' must be set to 1.
b.] Please remember to close the Excel sheet before each execution of the code.
c.] I...
February 11, 2010 at 11:27 am
Viewing 15 posts - 1 through 15 (of 28 total)