Viewing 15 posts - 406 through 420 (of 644 total)
Zubius (2/15/2012)
If using the stored procedure below(scheduled or run manually), only 40 - 50 will backup with no errors -
(This stored proc is used on all other databases...
February 15, 2012 at 6:09 am
a.borgeld (2/10/2012)
16383 mb (it is in megabytes). 16 gig
2048 mb. 2 gig
16384 -...
February 10, 2012 at 4:03 am
Use the DMV sys.dm_io_virtual_file_stats to get the counts of reads & writes per database. You can easily compare the access pattern & utilization from the results.
February 9, 2012 at 5:59 am
If you are using them in excess then yes, they will also make the impact.
February 9, 2012 at 5:37 am
Lowell (2/3/2012)
February 9, 2012 at 5:25 am
sqlzealot-81 (2/9/2012)
GilaMonster (2/9/2012)
February 9, 2012 at 5:17 am
Simha24 (2/9/2012)
How can query number of connection exists for particular period of time with sqlserver.
Check the performance counter GeneralStatistcis:UserConnections for that particluar period.
February 9, 2012 at 5:13 am
deepikamm (2/2/2012)
select @objid=object_id from sys.objects where name='substitute your Procedurename'
if exists(select id from sysdepends where depid=@objid)
begin
select name as ParentProcedure from sys.objects where object_id in
(select id from sysdepends where...
February 9, 2012 at 4:16 am
Gas Andy (2/9/2012)
Hmm, does SQLServerCentral sell your email address?
NO!! I didn't get any spam mails ever!
February 9, 2012 at 4:00 am
Dan-Ketil Jakobsen (2/9/2012)
Unfortunately the log file is full again.Stopping all jobs again. 🙁
Dan
You need to identify the queries which are generating these much logs. If you are doing some delete...
February 9, 2012 at 3:21 am
Yes adding the differential backup eases the restoration process & also they reduce the recovery time so they must be added.
However, as you said that you are going to take...
February 9, 2012 at 1:29 am
tototom (2/8/2012)
Finally after years of...
February 8, 2012 at 8:11 am
kuna.venkatarao10 (2/8/2012)
I have some questions--- Can i create non cluster index on primary key column
---when we use triggers in sqlserver
---How to avoid cursors in sqlserver 2008
Pls help me
Read...
February 8, 2012 at 7:46 am
GilaMonster (2/8/2012)
Technically it's a linear increase, not an exponential one...
Yeah right. I just used the word because at that time it felt like that ( the log file size increasing...
February 8, 2012 at 7:29 am
GilaMonster (2/8/2012)
February 8, 2012 at 6:58 am
Viewing 15 posts - 406 through 420 (of 644 total)