Viewing 15 posts - 3,661 through 3,675 (of 6,679 total)
Lynn Pettis (8/5/2010)
I guess I'll post my answer in both.Here is an article you may want to read as well: Deleting Large Number of Records[/url].
heh - I found the other...
August 5, 2010 at 7:31 pm
WayneS (8/5/2010)
Thanks for the update Jeff.In 2008, you should be able to use PowerShell to get the data you need.
Only if you have access to the OS to run it...
August 5, 2010 at 5:31 pm
jerry-621596 (8/5/2010)
August 5, 2010 at 5:07 pm
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...
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 *
...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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.
July 26, 2010 at 1:55 pm
Viewing 15 posts - 3,661 through 3,675 (of 6,679 total)