Forum Replies Created

Viewing 15 posts - 25,231 through 25,245 (of 39,804 total)

  • RE: Backup file issue

    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...

  • RE: restoring master database on windows 2000

    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...

  • RE: My PC was switched off by someone else & now I cannot access Maintenance Plans, etc

    That sounds strange. It almost sounds like some of the SQL files are corrupt. I might uninstall and reinstall the tools.

  • RE: Trust

    thanks for the book ref. Grabbed a sample for the Kindle 😛

  • RE: Transacation Log too big

    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...

  • RE: Writing my First Stored Procedure

    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 =...

  • RE: President Obama Stimulation plan and trend for SQL jobs in 1-5 years.

    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,...

  • RE: Sleeping process

    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...

  • RE: Memory on SQl Server Box

    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...

  • RE: Who should run the SSIS Service

    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...

  • RE: Long running left join query

    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...

  • RE: Determining a LOW USAGE SQL Server

    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...

  • RE: How to become sql server dba

    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.

    -...

  • RE: Trust

    Phil has a great point. We do need trust, and I'm not sure what the answer is. I know years ago I worked with a company that imported from China,...

  • RE: T-SQL

    It's not that they add extra constraints, it's often authors are thinking of one thing. One small area they are trying to show and they don't have the same frame...

Viewing 15 posts - 25,231 through 25,245 (of 39,804 total)