Viewing 15 posts - 16 through 30 (of 37 total)
It was just a scenario on which I have a doubt..
So I can't specify the error message.
Suppose the size of the master database is 50MB
and that 50MB is full then...
January 24, 2006 at 6:39 am
As far as i know when the database in Simple Recovery Mode , check point is issued depending on the recovery interval and when the T-Log is 70% full..
..hema
January 24, 2006 at 6:29 am
But sysprocesses contain only process id of the blocked process it doesn't contain the id of the blocking process.
How to get that? Actually I want to form a table with
the...
January 24, 2006 at 2:24 am
This command will give information about log space..
dbcc sqlperf(logspace)..
You will get the log size (the actual amount of space available for the log) and the log space used.It may be...
January 24, 2006 at 12:48 am
DTS Package is used for transforming the data and copying data from
source to destination .It is not used for deleting the data and more over there
will be no date control.So...
January 23, 2006 at 11:45 pm
create a trace on that stored procedure and see
what is happening really...
..hema
January 23, 2006 at 11:31 pm
Try that using a DTS Package..
..hema
January 23, 2006 at 10:19 pm
yaah sure jeff,
1) If you specify 'set nocount on' then no messages will be sent to client
for eg. (1 row(s ) affected)..hence it reduces the network traffic.
2)You should not...
January 23, 2006 at 6:19 am
Update the statistics of the database and see...
I am not sure about this..but i hope it may work..
..hema
January 23, 2006 at 6:10 am
It is the no of reads and writes that are counted as the cost
January 23, 2006 at 5:04 am
You can use :
'sp_dboption' stored procedure to change the collation setting for the database..
..hema
January 23, 2006 at 4:41 am
Limitations in stored procedure:
1) Use 'set nocount on' at the beginning of the stored procedure and use
'set nocount off ' at the end of the stored procedure.
2) Don't use 'exec'...
January 23, 2006 at 4:34 am
Stored procedures will be faster than scripts bcoz when the stored procedures are executed once then their execution plan will be stored in the procedure cache.So there will be no...
January 23, 2006 at 4:30 am
Viewing 15 posts - 16 through 30 (of 37 total)