Forum Replies Created

Viewing 15 posts - 76 through 90 (of 1,131 total)

  • RE: recovery model for System Databases

    Master and Tempdb are always in simple recovery mode and you cannot change the recovery mode.

    Model can be any recovery mode where new databases will be in the same mode....

    SQL = Scarcely Qualifies as a Language

  • RE: Table level backup

    The "Backup" command works at the database or database file level and there is no support for table level backups.

    There are various utilities available such as the Bulk Copy Program...

    SQL = Scarcely Qualifies as a Language

  • RE: Instead of Triggers on Views. How not to use the base tables?

    Alter the view and include the "WITH VIEW_METADATA" option. You may also want to also include the "SCHEMABINDING" option, which sometimes improves performance.

    From Books On-line:

    Specifies that the instance of...

    SQL = Scarcely Qualifies as a Language

  • RE: Memory contention between two databases?

    Provided that the results support my thoery, will moving each DB to its own instance (on same server) address the problem?

    It depend (i hate that answer).

    Let us call the...

    SQL = Scarcely Qualifies as a Language

  • RE: Memory contention between two databases?

    My thinking is that the Database B process is simply kicking Database A out of memory. And once Database A gets used for a bit, it's back to where it...

    SQL = Scarcely Qualifies as a Language

  • RE: To find column with constraint

    View INFORMATION_SCHEMA.CONSTRAINT_COLUMN_USAGE may meet your needs.

    Returns one row for each column in the current database that has a constraint defined on the column. This information schema view returns information...

    SQL = Scarcely Qualifies as a Language

  • RE: System Context Switches/Sec

    You need to determine which program is having the context switchs by using the process explorer utility and then post the results.

    http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx

    SQL = Scarcely Qualifies as a Language

  • RE: backup warning

    'I got the below warning message for full backup job. " 3/12/2010 12:22:07 AM: Another process might be locking this file The process cannot access the file because it is...

    SQL = Scarcely Qualifies as a Language

  • RE: SQL Monitoring Tools

    If you have SQL Mail enabled, then the SQL Server Agent alerts can work.

    Set up one alert to any error with a severity of 17 or higher.

    Alerts for various performance...

    SQL = Scarcely Qualifies as a Language

  • RE: cluter server databases backup on local drive

    You can place the backups file anywhere but to refer by drive letter, the drive must within the SQL Server resource group. You can reference using UNCs in the...

    SQL = Scarcely Qualifies as a Language

  • RE: Help me crash my server!

    Found this:

    SQL Server reports 701: "There is insufficient memory to run this query" when executing large batches

    http://support.microsoft.com/kb/2001221

    http://support.microsoft.com/kb/2000380

    I also recall a SQL Server 2008 "memory leak" condition with linked servers but...

    SQL = Scarcely Qualifies as a Language

  • RE: Trigger Security with Linked Server

    Saw mister.magoo's post after I had already written a reply, so this may be some duplication.

    You should check that:

    1) The Distributed Transaction Coordinator is running on both servers.

    2) OLE DB...

    SQL = Scarcely Qualifies as a Language

  • RE: An existing connection was forcibly closed by the remote host.

    MS has added some "Denial of service attacks" protection (SynAttackProtect setting), which can cause this message. See "Troubleshooting: Connection Forcibly Closed" at http://msdn.microsoft.com/en-us/library/ms187005.aspx

    Also see "Avoiding TCP/IP Port Exhaustion" at...

    SQL = Scarcely Qualifies as a Language

  • RE: Help me crash my server!

    We've had a few server crashes lately due to memory, so I'm trying to get a real good understanding of how memory works.

    With this message?

    Error: 701, Severity: 17,...

    SQL = Scarcely Qualifies as a Language

  • RE: Determining if a substring is a number...with variable substring lengths

    If a decimal point or commas are allowed, add the negation for these values

    "All numbers" is logically equivalent to a double negative of "NOT ( any non-numbers )", so just...

    SQL = Scarcely Qualifies as a Language

Viewing 15 posts - 76 through 90 (of 1,131 total)