Forum Replies Created

Viewing 15 posts - 4,171 through 4,185 (of 4,745 total)

  • RE: SQL Server Database Engine cannot obtain a LOCK resource at this time

    each lock that SQL takes out uses up a small amount of memory (cannot remember how much - something like a few KB). The upper limit of no of locks...

    ---------------------------------------------------------------------

  • RE: We had a mess moving our database from one server to another

    no problem, google the sp_help_revlogin stored procedure for best way to transfer over logins along with the users in the database whilst maintaining the SID values.

    ---------------------------------------------------------------------

  • RE: SQL 2005 to SQL 2000

    sorry, a compatability level of 80 does not mean you can restore a 2005 backup to a sql 2000 instance.

    ---------------------------------------------------------------------

  • RE: SQL 2005 to SQL 2000

    if its a backup from a SQL sefver 2005 you will not be able to restore it to a SQL2000 instance. Restore it to a a SQL2005 instance first and...

    ---------------------------------------------------------------------

  • RE: We had a mess moving our database from one server to another

    it certainly sounds like an orphaned user problem, so probably yes.

    Connecting to the database is a two level thing, with the login in the master database to determine the ability...

    ---------------------------------------------------------------------

  • RE: How to script existing DB Maintenance Plans

    strikes me if you are not going to use the DBMPW to create the database maintenance jobs, then avoid SSIS altogether, its not the best tool for the job. Keep...

    ---------------------------------------------------------------------

  • RE: How to tell if Index stats need updating?

    there is a column 'rowmodctr' in sysindexes which tracks the no of updates since the last update stats. Pretty sure this is what SQL uses for auto_update.

    You could use this...

    ---------------------------------------------------------------------

  • RE: Unable to unlock user account in SQL server 2005

    from memory the solution to this is something unexpected like untick the enforce password policy opton before unlocking the account on the status tab in login properties

    ---------------------------------------------------------------------

  • RE: Maintenance clenup task not deleting bak and trn files

    this is most likely a bug. there have been lots of problems with cleanup tasks in maintenance plans in SQL 2005. You want to be at least at version 9.00.3054...

    ---------------------------------------------------------------------

  • RE: How to script existing DB Maintenance Plans

    BCLynch (10/8/2008)


    Hi there

    I took a maintenance plan (conencted to SSIS) end exported it to a file. I connected to a clean sql server and imported the dtsx file.

    This created...

    ---------------------------------------------------------------------

  • RE: SQL clusters over a WAN Link

    Michael.varriale (10/7/2008)


    Argggg...

    I 'think' I need to set up a cluster with nodes in different cities for dr.

    I have a lot of experience with clustering in the same...

    ---------------------------------------------------------------------

  • RE: Can't start SQL Server Agent after applying latest security patch

    I think the agent XPs setting may be your real problem.

    try running this via SSMS to permanatly set this on:

    sp_configure 'show advanced options', 1

    GO

    RECONFIGURE

    GO

    sp_configure 'Agent XPs', 1

    GO

    RECONFIGURE

    GO

    ---------------------------------------------------------------------

  • RE: Restore

    In the circumstances you describe with just one diff backup and one log backup, there is no reason at all why you should not just restore the full backup then...

    ---------------------------------------------------------------------

  • RE: SQL Server 2005 on VMWARE

    microsoft are just bringing out Hyper-V, maybe they will support on that!

    ---------------------------------------------------------------------

  • RE: SQL Server 2005 on VMWARE

    Virtualised servers are known to have performance issues when supporting intensive applications, and this can include SQL server databases. so in terms of supporting busy SQL applications, vmware is not...

    ---------------------------------------------------------------------

Viewing 15 posts - 4,171 through 4,185 (of 4,745 total)