Viewing 15 posts - 27,961 through 27,975 (of 39,769 total)
This is a very open ended question.
you might start here: http://www.sqlservercentral.com/articles/Performance+Tuning+and+Scaling/indexcreationguidelines/1389/
Clustered indexes (only 1 per table) are good for range queries.
Nonclustered are good for seeks to specific rows.
You generally...
July 2, 2008 at 9:45 am
What do you mean reduce duplication?
Litespeed (and Red Gage/Hyperbac) perform compression, which involves some tokens and pattern replacement, just like ZIP files.
Litespeed, and the other vendors, provide utilitis to uncompress...
July 2, 2008 at 9:42 am
The MDF specification isn't available. This is meant to be read by the SQL Server service only. To extract tables, you'd connect to the SQL Server service and select them...
July 2, 2008 at 9:30 am
There are a number of DMVs that can get you server information. You can start here: http://www.codeproject.com/KB/database/Dynamic_Management_Views.aspx
July 1, 2008 at 9:56 pm
Which new table? Replication is by publication, so if you create a new table, you need a new replication publication.
July 1, 2008 at 3:56 pm
Usually you'll find if there's a network glitch, the backup will fail. I almost never run the backup across the network. run it locally and copy it.
July 1, 2008 at 3:55 pm
nope, backup, detach, uninstall, reinstall.
sp_help_revlogin to save logins.
July 1, 2008 at 11:16 am
I don't think this is allowed directly. Maybe with a UDF?
July 1, 2008 at 11:15 am
I'd think that something must have changed. If not, the DBCC shouldn't have doubled.
One thing to note, that checkdb includes a checkcatalog and checktable. Paul Randal has a series on...
July 1, 2008 at 11:14 am
Check the snapshot.sys.users to see what's mapped there and see if you have unmatched SIDs.
Or run sp_change_users_login with the reporting option.
July 1, 2008 at 11:11 am
Should work, and there are some new tools from Microsoft to help check for SQL Injection.
July 1, 2008 at 10:49 am
Short answer, no.
You can check sp_msforeachtable, but that doesn't cover columns.
July 1, 2008 at 10:49 am
What do you mean "write the exam"? That doesn't make sense.
either you want to take the exam, meaning register for and answer questions on the test, or you want to...
July 1, 2008 at 10:47 am
Is the database in full recovery mode? You could get a log reader from Apex SQL or Lumigent
July 1, 2008 at 10:46 am
Red gate, quest, Hyperbac, all have good solutions. Test them all, check out the features and support and see what you think. They all fit slightly different niches.
Disclosure: I work...
July 1, 2008 at 10:46 am
Viewing 15 posts - 27,961 through 27,975 (of 39,769 total)