Viewing 15 posts - 25,231 through 25,245 (of 39,804 total)
Do you have logging set up for the maintenance plan? It's on one of the last tabs and you can log to a disk file.
Make sure you have rights for...
February 10, 2009 at 10:01 pm
Do you mean SQL 2000? REbuildm.exe is on the CD and that will help you rebuild a new, baseline, RTM master database.
If you need to restore, you need to start...
February 10, 2009 at 9:43 pm
That sounds strange. It almost sounds like some of the SQL files are corrupt. I might uninstall and reinstall the tools.
February 10, 2009 at 9:19 pm
http://www.sqlservercentral.com/scripts/Index+Management/
Scripts for index management.
Be sure you have transaction log backups running.
The target server error is because you are working with master target servers. I'd disable this as it was flaky...
February 10, 2009 at 10:36 am
GO ends the stored procedure and batch. Use a return so you know where the proc ends.
CREATE procedure UpdateData AS
update tblTest
SET Field01='Value01', Field02='Value02', Field03='Value03'
WHERE (Field04 =...
February 10, 2009 at 10:16 am
I'm not sure any particular industry will be better for SQL jobs. A lot of the stimulus package now seems to be trying to save some things, local government, banks,...
February 10, 2009 at 10:15 am
I agree with Grant. If it's still working, and you can let it run, do so. If you need to get it finished, and perhaps just restart it, try killing...
February 10, 2009 at 10:05 am
The old rules of leaving 1.5-2.5GB for the US definitely applied to 32 bit because that much space was needed for paging out PAE. With 64, I'm not sure what...
February 10, 2009 at 9:52 am
Why a local admin? Most services don't need this.
you want to follow the same advice for service accounts as user accounts. Used the least privileges needed. For SSIS, I'd use...
February 10, 2009 at 9:45 am
I assume you have the ID columns indexed on both tables. A "not exists" subquery might help, but as Grant said, you'd need to post more details and do some...
February 10, 2009 at 9:39 am
I tend to used CPU, users, and batches as my benchmarks. Run this across a few weeks, get samples on all days, exlude backup/maintenance times.
Watch out for peaks. A...
February 10, 2009 at 9:38 am
I like Jonathan's advice. The other things I'd recommend are:
- Don't get certified now. Do that when you have a little experience working with the product, even in side projects.
-...
February 10, 2009 at 9:36 am
Viewing 15 posts - 25,231 through 25,245 (of 39,804 total)