Forum Replies Created

Viewing 15 posts - 751 through 765 (of 1,409 total)

  • RE: Distinct Select

    thava (8/23/2013)


    The result is

    PNameManagerDeveloper

    Testdbodbo

    TestdboINFORMATION_SCHEMA

    Testdbosys

    Testguestdbo

    TestguestINFORMATION_SCHEMA

    Testguestsys

    but expected is

    PNameManagerDeveloper

    Testdbodbo

    guestINFORMATION_SCHEMA

    sys

    with a minimal scan count and read count

    If you want the result as expected I think you need to build a SSRS...

  • RE: Multi node multi instance clustering Drive letters

    Jason.Reeves (8/22/2013)


    4 Nodes - 4 different drive letters with multiple disks arrayed under.

    You mean: 4 instances - 4 different drive letters with multiple disks arrayed under.

  • RE: Delete not working

    terry999 (8/23/2013)Any ideas what I should investigate next time I'm connected to this machine. Trying to build a list of things to check when I next can access this machine....

  • RE: CU1 updated Failed on SQL2K8 x64-SP2?

    The error in the summary refers to the failure to update the shared features. The instance itself is likely to be updated and stating the correct version number. Look in...

  • RE: Delete not working

    GilaMonster (8/23/2013)


    What do you mean 'the delete does not delete'?

    Implodes the server and creates a black hole in the server room?

    ROFL :rolleyes:

    If that happened I would say the delete definitely...

  • RE: Full and transaction log backup chain breakup

    Can you tell the error message you got when you tried to restore the third LOG backup? This could give some information about why the chain was broken. It could...

  • RE: NULL issue

    To get the NULL value in your results, you will need to change your WHERE clause to

    WHERE name <> 'Check' OR name IS NULL

    Or you need to rewrite your WHERE...

  • RE: files ndf

    Specific for the more write intensive filegroups the performance will benefit with 4 datafiles vs. 1 datafile. With 4 datafiles the I/O will be spread over all datafiles (when they...

  • RE: How to create database dynamically

    At first glance (I haven't analysed or executed the code) it looks like you need extra double quotes around the path/filenames.

    Try changing this part:

    ...

    CREATE DATABASE [CoreDB] ON PRIMARY

    ( NAME...

  • RE: files ndf

    Most of the time a database benefits from more then one datafile. Also use multiple filegroups to seperate your data (historical vs. actual and/or clutered indexes vs. non-clustered indexes and/or...

  • RE: Mdmp files

    Can you check in the SQL Error logs what is causing these memory dumps? Also check the Windows Event logs. I expect some severe error messages just before the dumps...

  • RE: Failover 10,000 databases?

    The time it takes to failover is very long because of the number of databases. To become online SQL needs to open filehandles to all database files (each database has...

  • RE: Shorten query by using Top predicate

    Maybe you would be better off using:

    SELECT

    CASE (SELECT COUNT(1) FROM table WHERE...)

    WHEN 0 THEN 'none'

    WHEN 1 THEN 'single'

    ELSE 'multiple'

    END

    and then using your simplified or complex query depending on the results.

  • RE: Help with Max function

    The MAX statement will only return one single value. You can get the desired results using the TOP clause:

    SELECT TOP 2

    change_id

    FROM table_a

    ORDER BY change_id DESC

  • RE: SQL SERVER DB Mail 2005

    It looks like your configuration of Database Mail isn't correct. Run sp_configure to see if DatabaseMail XPs are enabled and then delete and reconfigure your mail profile and account settings...

Viewing 15 posts - 751 through 765 (of 1,409 total)