Viewing 15 posts - 3,661 through 3,675 (of 6,676 total)
I agree with Leo - there is no reason for you to have to implement something like this. If there is a problem with tempdb - then you need...
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
August 3, 2010 at 4:13 pm
Instead of trying to use IN and forcing the comparison using character strings, you should convert it to an EXISTS or OUTER JOIN comparison on a correlated query.
For example:
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
August 1, 2010 at 10:01 am
You can validate it yourself with minimal effort - RDP to the server and use the cluster administrator console (is this windows 2008 also, or 2003?). The administration of...
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
July 31, 2010 at 10:40 am
I am not sure about the reference to the recycle bin in the error - that seems a bit suspicious.
Is the I:\ drive a cluster resource? Is the mount...
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
July 31, 2010 at 9:44 am
If your log continues to grow - even after transaction log backups are run, then you have an long running open transaction that is preventing the space in the log...
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
July 31, 2010 at 9:39 am
The table that will be considered the preserved table is the table that is logically to the left of the table you are joining in. The order of 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
July 31, 2010 at 9:23 am
If your database doesn't have any tables - then the easiest way to reclaim the space is to drop the database and create a new one.
If you have objects in...
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
July 31, 2010 at 9:10 am
No - you wouldn't want to do that. I was thinking you might have just been starting the other jobs instead of running them from the new agent job.
Each...
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
July 31, 2010 at 8:55 am
In your new job - are you starting the other jobs, or did you setup new job steps for each package and set that step to run the SSIS package...
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
July 30, 2010 at 5:17 pm
You should not set the min memory = max memory. That could cause issues within SQL Server.
Since this is a dedicated box - there is no reason to set...
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
July 30, 2010 at 4:59 pm
I use maintenance plans myself, and unlike others - have found that I can do everything needed without having to create additional agent jobs to call specific scripts.
When I have...
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
July 27, 2010 at 2:00 pm
Just drag the task into the maintenance plan 3 times. Set the precedence constraints appropriately - and there you go.
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
July 26, 2010 at 1:55 pm
Maintenance plans are not available in the Express Edition - which also does not have SQL Server Agent.
You have two options:
1) Upgrade to an edition that supports maintenance plans and...
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
July 26, 2010 at 1:37 pm
Are your users logging into that machine - or are they logging into their own machines and trying to connect? If they are logging into their own machines, are...
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
July 25, 2010 at 6:49 pm
sqlbuddy123 (7/20/2010)
Try to switch to Bulk Logged recovery model and take frequent Transaction Log backups. This would do minimal Logging and truncate the TL.
...
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
July 20, 2010 at 1:54 pm
Viewing 15 posts - 3,661 through 3,675 (of 6,676 total)