Viewing 15 posts - 6,631 through 6,645 (of 6,670 total)
The process you are going to need to following to shrink the log file is:
1) Change recovery model to simple
ALTER...
March 9, 2008 at 11:25 am
Mike,
Since you are already looking at Red-Gate SQLBackup, try creating a new backup using SQLBackup and compression to create a smaller file. Try restoring that file - copying that...
March 3, 2008 at 12:13 pm
MALIK (3/3/2008)
i just receive an email error msg from sql server by saying this..
The SQL Server performance counter 'Percent Log Used' (instance 'DATABASE') of object 'SQLServer:Databases' is now above the...
March 3, 2008 at 12:05 pm
If you are on SQL Server 2005 - you can do everything you need to do in a maintenance plan. SSMS maintenance plans include a task called Execute SQL...
March 3, 2008 at 11:47 am
One more thing you might want to consider. Before running your backup set the database into single user mode then run the backup. This will insure that there...
March 3, 2008 at 11:14 am
My guess is that you are on a cluster. The drives have been added to the cluster, but not so that SQL Server can see them. On a...
February 24, 2008 at 11:39 am
Jason Selburg (2/23/2008)
February 24, 2008 at 10:36 am
I think what you are going to need to do is have a separate column for each OR condition, for example:
SELECT
...
,case when...
February 23, 2008 at 10:16 pm
Since you have to resort to dynamic SQL anyways, don't bother with two statements and a temp table. You can do something like:
Declare @sql varchar(max);
February 23, 2008 at 10:00 pm
tigersam_20002000 (2/22/2008)
What features of SQL Server require you to use full logging?
Whether or not you use simple or full recovery model is not dependent upon any features of SQL Server....
February 23, 2008 at 9:32 pm
Yes - it will generate all scripts. I do not know whether or not it can be automated - but it is easy enough to find out. Download...
February 20, 2008 at 3:50 pm
Muralidharan Venkatraman (2/19/2008)
My transaction log file has grown to 25GB.
I did dbcc shrinkfile which did not help much.
Pls confirm if this is the right procedure.
1. Backup the database.
2. Backup...
February 19, 2008 at 8:32 pm
What you are asking about is a multi-node cluster (one cluster with three nodes). You cannot (afaik) have two separate clusters sharing a node.
With that said - yes, you...
February 19, 2008 at 8:13 pm
Jason Wisdom (2/14/2008)
Greg Charles (2/14/2008)
I wouldn't mess with scripts anyway if you want to duplicate the database.
Actually, that is exactly it.
I want to duplicate the database.. EXCEPT for...
February 17, 2008 at 10:12 am
Lookup_BI (2/12/2008)
Im the one who logged that topic on SQLTeam as well.I currently have got the INSERT part working with some help.Currently working on Update.
I know it is a very...
February 12, 2008 at 9:37 pm
Viewing 15 posts - 6,631 through 6,645 (of 6,670 total)