Viewing 15 posts - 46 through 60 (of 63 total)
Though it sound strange that why the transaction log grew so much..
you can go ahead an truncate it
backup log databasename with truncate_only and
then shrink the database...
but if you...
February 10, 2009 at 10:41 am
yes ..you are right..that was typo ..its sql 2005
February 6, 2009 at 3:38 am
top level view
Backup the database with initalize so you have only one bak file all the time
use xp_cmdshell or CLR to copy the file to the destination
Restore with move (force)
for...
February 5, 2009 at 12:09 pm
PHEW...
System table is gone...
export as much as possible
WTF --> if you have a DB which is important ..dont be lazy to take backup .....
Atleast once a Week for sake
February 5, 2009 at 12:01 pm
Go to media recovery company and try to see if they can recover the mdf..thats the ONLY HOPE...
HOPING AGAINST HOPE...
February 5, 2009 at 11:58 am
might be a more insight
note down the offset value and open scientific calc
select hex and type the offset and change to decimal and divide by 8192 and get the page...
February 5, 2009 at 11:53 am
its not in the maintenance plan..
however you can use it using management studio..
Are you taking full backup at night or taking tx backup also
February 5, 2009 at 11:27 am
let me add some more
backup log will truncate the log
that means it will reuse the inactive portion of the transaction (few exceptions) log so it will prevent them...
February 5, 2009 at 11:24 am
i heard thats not supported sql 2000 on windows vista...
there can be tricks and tweaks to install it..
if you are installing the free version of sql
express is 10 times...
February 5, 2009 at 11:17 am
SQL EXpress is a 2005 edition
2000 is not supported on vista
February 5, 2009 at 9:15 am
Your system table is corrupt.
Restore from backup or export as much data as possible 🙁
January 21, 2009 at 8:38 am
one line is good enough
EXEC dbo.sp_stop_job N’jobname'
January 20, 2009 at 8:30 am
use this code and check if orphan records goes off
alter database tempdb
REMOVE file locigal_file_name
January 20, 2009 at 8:03 am
CHeck if any disk resource is offline for any cluster group .Irresepective if it is a sql group or not
November 3, 2008 at 9:12 am
Viewing 15 posts - 46 through 60 (of 63 total)