Viewing 15 posts - 1,261 through 1,275 (of 2,897 total)
GilaMonster (9/16/2010)
So, in this case, would 1 long transaction cause the log to grow despite the backups ?
Yes. The log can only be truncated up til the beginning of...
September 16, 2010 at 5:40 am
When you specify that it should delete .BAK files, do not inlude the "." (dot, or period) in the extension .... just BAK
September 15, 2010 at 9:01 pm
Welcome to SQL 2005 🙂
September 15, 2010 at 11:36 am
Why are you doing a shrink database ? There are many posts on this site about the problems you will cause to your indexes by doing a DB shrink.
...
September 15, 2010 at 9:16 am
mohd.sql (9/15/2010)
hi friends,getting the following error try to help me out...
kindly check E: of server 10.16.167.46 as it has low disk space and it's below threshold value.
1) Find & delete...
September 15, 2010 at 4:02 am
assh1122 (9/14/2010)
Hi,I am new to SQL programming. Could you please suggest me any online tutorial or link to learn the script you have used here? I greatly appreciate your help.
Search...
September 14, 2010 at 11:55 pm
Choose "Results to Text", then copy/paste the results into a new window.
declare @OldOwner varchar(100), @NewOwner varchar(100)
set @OldOwner = 'oldowner'
set @NewOwner = 'dbo'
select 'sp_changeobjectowner ''[' + table_schema + '].[' +...
September 14, 2010 at 11:27 am
I build manual scripts to rebuild/reorg indexes. For the larger ones, I do a t-log backup in between to keep log size manageable.
September 14, 2010 at 10:38 am
Why do you need to maintain your indexes so frequently ? I usually do ours every couple of months on the busy databases.
However, I do log backups about every...
September 14, 2010 at 9:50 am
What do you mean by "bare-metal recovery" ?
September 14, 2010 at 8:45 am
tt-615680 (9/14/2010)
I set a job to run every morning, for the first few days it worked fine but from yesterday morning, when I run the query that checks if...
September 14, 2010 at 8:23 am
When I want to modify the system SP, I make a new version, with my own naming convention so as not to be confused with the systm version.
September 14, 2010 at 7:49 am
Go to the "Notifications" section of the job, and the email options are there.
September 13, 2010 at 1:30 pm
At first glance it looks ok. No reason you can't just try it and see.
September 13, 2010 at 9:38 am
As a habit, once you have installed SQL, you should set up a job to backup the system databases, and then add backups for any other databases that get created...
September 13, 2010 at 4:53 am
Viewing 15 posts - 1,261 through 1,275 (of 2,897 total)