Viewing 15 posts - 6,646 through 6,660 (of 6,676 total)
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...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
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...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
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...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
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...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
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...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
February 12, 2008 at 9:37 pm
One thing you also should be aware of is that you always have the option of executing a SQL Task in your maintenance plan.
So, you don't have to use the...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
February 10, 2008 at 10:27 am
Sorry - the command should be:
Use [db1]; Execute sp_updatestats;
Use [db2]; Execute sp_updatestats;
...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
February 5, 2008 at 9:32 pm
Just one other note: In SQL Server 2005 the system stored procedure 'sp_updatestats' has been improved to only update statistics on tables that have been modified.
If you use the maintenance...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
February 5, 2008 at 9:31 pm
John Morris (2/3/2008)
jeff.williams3188 (2/3/2008)
Build a comparison project between your two databases using SQL Compare, select...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
February 3, 2008 at 11:48 am
You can also use variables in the CTE:
DECLARE @myVAR int;
SET @myVAR = 1;
;WITH myCTE (col1)
AS (SELECT col1 FROM myTABLE WHERE col2 = @myVAR)
SELECT * FROM myCTE;
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
February 3, 2008 at 11:14 am
Another option is to download a trial version of SQL Compare (www.red-gate.com) and SQL Data Compare.
Build a comparison project between your two databases using SQL Compare, select only those objects...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
February 3, 2008 at 11:00 am
I know you stated you did not want to use third party tools, but I am assuming that is because of cost. So, visit http://www.quest.com and download their free...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
January 27, 2008 at 11:29 am
There is an option to repair minor errors. If that option is checked - then exclusive access is required to run the integrity check.
Generally, you do not want the...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
January 23, 2008 at 9:02 pm
A couple of ways to find out:
Open Activity Monitor, find the process and see what commands are being run.
Or, install the Performance Dashboard Reports from Microsoft. Run the report...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
January 17, 2008 at 10:04 pm
239 columns? You definitely have a problem with normalization. I would highly recommend normalizing this table.
The only reason I could see having this many columns (and this is...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
January 16, 2008 at 11:02 am
Viewing 15 posts - 6,646 through 6,660 (of 6,676 total)