Viewing 15 posts - 361 through 375 (of 451 total)
From object explorer, click the tablename --> statistics, it shows all the statistics (index and _WA_).
Right click each statistics, it shows details about this statistics.
January 8, 2008 at 12:50 pm
Thank you vyas. I read this post. MDAC on my server is 2.82.1830.
I am wondering what the possible root cause?
I will try to export...
January 7, 2008 at 7:20 am
check this..."Managing User Access"
January 4, 2008 at 4:35 pm
Congratulations! I thought you were a MVP already 🙂
January 4, 2008 at 4:28 pm
This link may help.
http://www.sqlservercentral.com/articles/Administering/unmarksuspect/137/
December 20, 2007 at 9:57 pm
Any error message from errorlog? Check why it is suspect.
December 20, 2007 at 9:50 pm
Back up to local disk, then copy over to the network. The local backup is handy whenever there is a need for recovery. It is faster than restoring...
December 20, 2007 at 5:29 pm
Free some disk space for log file and try DBCC DBRECOVER (dbname)
Please refer to:
http://msdn2.microsoft.com/en-us/library/aa937568(SQL.80).aspx
or BOL search "Insufficient Disk Space".
December 18, 2007 at 7:51 am
check this post:
http://www.sqlservercentral.com/Forums/Topic359308-338-1.aspx#bm361850
Maintenance plan has a cleanup task to do such things. There is a bug. It has a fix now. http://support.microsoft.com/kb/933508
December 12, 2007 at 1:02 pm
How do you plan a database backup?
This is an open question. Depends on how much s/he knows and how much considerations from both database and business perspectives.
December 12, 2007 at 12:42 pm
Replication may be an option if you need only a portion of the tables rather than the whole database for reporting analysis.
Transactional replication require primary keys on tables to be...
December 11, 2007 at 12:38 pm
Transaction log is 80 MB only? It is so small. Why bother to shrink it?
If it is full recovery mode, should have transaction log backup in...
December 9, 2007 at 6:42 pm
Finally I found a recent KB for this.
Microsoft SQL Server 2005 Service Pack 2 issue: Cleanup tasks run at different intervals than intended
December 6, 2007 at 7:00 pm
exec this stored procedure XP_fixeddrives and store the output into a table or a temp table. Then query your table.
CREATE TABLE x (drive char(1) PRIMARY KEY, FreeSpace int NULL)
INSERT...
December 4, 2007 at 4:31 am
using "select * into currentdatabase.dbo.droppedTable FROM RecoveredDatabase.dbo.dropppedtable" will get the data only. You may lose the index, constraint, or permission if any.
You can script out the table schema from...
December 3, 2007 at 8:08 pm
Viewing 15 posts - 361 through 375 (of 451 total)