Viewing 15 posts - 61 through 75 (of 78 total)
Hi Lays,
How did u copy the log from D:\ to E:\ as mentioned.
this way i could attach it but then i took the db offline copied the log from...
June 18, 2008 at 8:32 am
Its just an example thats it.
It looks like this...
June 11, 2008 at 2:08 pm
The query to be tunned is like this to
select * from test.samp_id,test.b_id,
case when (test.case_active='N' and sample.case_te_date is null)
then 'In Active' when (not tbl_test.case_te_date is null)
then 'Marked for Del'...
June 11, 2008 at 1:20 pm
Hi cath,
I am able to see history of other jobs,but i am not able to see history of backup jobs.The job has ran fine i have crosschecked.
Any other idea?
June 10, 2008 at 2:53 am
Check if log files are taking more space and shrink only once dont do shrink every time it causes fragmentation.
If log files are taking more space,schedule frequent log backups and...
June 4, 2008 at 11:35 pm
Thanks cath.
I will monitor and will tell u.
June 4, 2008 at 6:04 am
Cath,
Log file size was 5.62 gb.
I took transaction log backup twice but still the size is same when i crosscheck the size is still the same as 5.62 gb.
I think...
June 4, 2008 at 3:26 am
Hey create this procedure in msdb db and exec as
EXEC usp_job_history '10/02/2004'
------------------
CREATE PROCEDURE usp_job_history
@dateparam DATETIME
AS
SELECT dbo.sysjobhistory.server, dbo.sysjobs.name AS job_name,
CASE dbo.sysjobhistory.run_status
WHEN 0 THEN 'Failed'
WHEN 1...
June 4, 2008 at 1:00 am
USe
SELECT @@VERSION AS 'SQL Server Version'
and
xp_msver
it returns information about the actual build number of the server and information about the server environment.
Thanks
June 4, 2008 at 12:55 am
Data size is 8 gb and log size is 14 gb.
i checked through profiler lot of transaction are going on.
So during weekend the log file size reaches 20 gb
June 4, 2008 at 12:46 am
Suresh,
Once we shrink it will reduce,but after some hours log file size increases about more than 2gb.Thats the issue.
I am shrinking daily.Wats the solution.
June 4, 2008 at 12:33 am
In sql server 2005 we can do this.
backup log db to disk=' '
DBCC SHRINKFILE (db,800) WITH NO_INFOMSGS
I did like this it worked.Try this.
June 3, 2008 at 10:17 pm
can i user database maintenance plan for only deleting old backup files in sql server 2005
pls help
April 29, 2008 at 7:48 am
hi MD,
can u pls help me on this.......
atleast do u know the batch code to delete the old .txt or .doc files so i can alter that
i want to delete...
April 28, 2008 at 8:08 am
Viewing 15 posts - 61 through 75 (of 78 total)