Viewing 15 posts - 1 through 15 (of 37 total)
Put the database in the emergency mode,
then use sp_resetstatus to change the status flag on the database..and then restore the database from the backup...
..hema
March 13, 2006 at 1:45 am
I want to know whether there is any
predefined system stored procedure for finding the same and thanx for the reply...
..hema
March 8, 2006 at 6:31 am
If the transaction log contains committed transactions and u need more space for lot
of active transactions then u can truncate the
log without backing up.
..hema
March 8, 2006 at 3:34 am
you can use the following system stored procedure :
sp_depends 'objectname'
You will get all the objects which depend on that object.Hope it will be useful to u...
..hema
January 29, 2006 at 11:34 pm
You forgot to give and 'end ' at the end of the transaction.
There are three 'begin' statements but only two 'ends'
try this.....
declare @Balance money
begin transaction
......................
........................
if @Balance...
January 29, 2006 at 10:39 pm
May be the log is full....
..hema
January 27, 2006 at 5:53 am
I think we can do it maually..
..hema
January 27, 2006 at 4:10 am
check whether the SQL Server and Agent are in the same domain account are not..
..hema
January 27, 2006 at 1:35 am
Can you specify the primary key of the parent table.
I guess the column in the child table is not accepting any nulls.
..hema
January 27, 2006 at 12:08 am
And one more question:
when the master database is full, will the sql server stop running? Plz clarify this.....
..hema
January 26, 2006 at 9:55 pm
Mr Lahkani,
We know that when sql server is started it uses three files:
1) master.mdf file
2)master.ldf file
3)error log file
But as master is full, Can it use the files of the master...
January 26, 2006 at 9:43 pm
Hi,
You divide that table into two tables and establish one-one relationship between those
two tables...
..hema
January 24, 2006 at 11:00 pm
I think detaching and attaching will be better and it is faster..
..hema
January 24, 2006 at 9:38 pm
Datafiles(.mdf) and logfiles(.ldf) should not be
kept on a single disk,bcoz if the disk crashes
you will not be able to recover the database upto the point of time..
..hema
January 24, 2006 at 9:34 pm
Thanx for the help..but I want to know how to
restart the sql server when the master database
is full..
...hema
January 24, 2006 at 9:30 pm
Viewing 15 posts - 1 through 15 (of 37 total)