Viewing 15 posts - 976 through 990 (of 1,315 total)
It seems obvious that it would be faster in single-user mode, but I don't know how you would estimate the time difference with no test system.
Have you tried profiling the system...
November 29, 2005 at 10:04 am
I think showing all objects and their owners is overkill.
This will find all objects in all databases owned by a given login:
set
nocount on
create...
November 28, 2005 at 10:20 am
I agree that someone needs to have database normalization explained to them (loudly and at length), but I'll take a shot at answering your question.
If you define the constraint...
November 28, 2005 at 9:02 am
The rowcnt field in sysindexes will give you a rowcount:
select object_name(id), rowcnt from sysindexes where indid < 2
This is frequently inaccurate, although it's usually a good estimate. If you...
November 21, 2005 at 12:16 pm
Bulk insert is the fastest way to load data into SQL Server, especially if it is minimally logged. The data source can only be a text file.
The fastest way to...
November 16, 2005 at 9:00 am
Did you try their website? http://www.quest.com/quest_central_for_sql_server/index.asp
I don't think it has what I would call a debugger. It can do wonderful things to help you improve and optimize working SQL...
November 15, 2005 at 12:53 pm
The bulk insert will undoubtedly be much faster than using transforms, but an important question is what kind of transforms? If you are modifying data in transforms, then these operations...
November 15, 2005 at 11:54 am
A 10-digit phone # could overflow an int, but casting to bigint, dec(10,0), or char(10) would be safe. STR(phone,10,0) would also work.
November 10, 2005 at 12:31 pm
Backup history is not deleted automatically, you should periodically run sp_delete_backuphistory to clean it out.
That stored proc can take a long time to run because it uses cursors, especially if...
November 10, 2005 at 11:56 am
The inserts will be logged regardless of whether row locking or table locking is used.
If this is a serious problem, you might consider these approaches:
Dump the data warehouse records to...
November 10, 2005 at 11:43 am
The table lock option controls whether row locking or table locking is used for the destination table.
If the source is a table (rather than a text file, spreadsheet, etc.), it...
November 10, 2005 at 8:21 am
There are some great webcasts available (both live and on-demand) from Microsoft at this site: http://www.microsoft.com/events/series/msdnsqlserver2005.mspx#On-Demand%20Webcasts
Indexes and fragmentation are discussed in parts 4 and 5 of a 10-part "A primer...
November 4, 2005 at 9:42 am
I thought your original point was that a clustered index would require more pages to store the non-leaf part of the index due to the higher leaf-level page count, which...
November 4, 2005 at 8:17 am
It is true that there will be more index entries in a clustered index due to the larger number of leaf-level pages, but this adds at most one level to...
November 3, 2005 at 2:00 pm
Viewing 15 posts - 976 through 990 (of 1,315 total)