Viewing 15 posts - 61 through 75 (of 2,386 total)
Nothing special requirements as I knew, Just perform regular database backup.
May 5, 2005 at 3:05 pm
This one should help you.
http://support.microsoft.com/default.aspx?scid=kb;en-us;326613
May 5, 2005 at 3:02 pm
See whether this helps you.
http://support.microsoft.com/default.aspx?scid=kb;en-us;198891
May 5, 2005 at 2:18 pm
Sorry for wrong typing, should be dbcc shrinkfile (yourdatabaselogicalfilename, emptyfile), you can get logicalfilename from sp_helpfile on your database.
May 5, 2005 at 2:13 pm
Run dbcc shrinkfile (yourdatabaselogfilename, emptyfile) and alter database to drop the empty file and remove the file group.
See BOL for details.
May 5, 2005 at 2:04 pm
varchar uses 1 byte to store each character, nvarchar use 2 bytes to support multiple language requirements.
By default, "set ansi_padding" is on, Trailing blanks in character values inserted into varchar columns are...
May 5, 2005 at 1:26 pm
Any errors in application/system logs? Is "checkpoint" still running?
May 5, 2005 at 9:36 am
You can create "execute SQL task" that create a temp table with same structure as the Access table as precedence of transferring of Access data process.
May 5, 2005 at 9:31 am
Error 845 indicates SQL Server is under a heavy stress load or high I/O conditions that could be caused by checkpoint.
sp_helpdb will tell you which database's id is 6 and...
May 5, 2005 at 9:12 am
Sounds like checkpoint is forcing all dirty pages for the current database to be written to disk. Do you see any error messages in SQL Server errorlog? The database which...
May 5, 2005 at 8:08 am
Maintenance plan runs xp_sqlmaint which actually calls sqlmaint.exe
May 5, 2005 at 7:53 am
What is the data type of Salary column and how do you define it?
You need define it as numeric (10, 4)
May 4, 2005 at 10:15 am
Viewing 15 posts - 61 through 75 (of 2,386 total)