Forum Replies Created

Viewing 15 posts - 1 through 15 (of 105 total)

  • RE: Database Maintenance

    Oracle_91 (8/30/2011)


    Hi All,

    What is the best order while creating maintenance jobs so that sql optimizer can pickup the best execution plan.

    Daily i have 3 jobs configured to run in the...

  • RE: Backup taking more time than usual

    First thing I'd look at is: what else is happening on the SQL Server at that time?

    Look for

    1. Maintenance tasks ie re-indexing.

    2. other Backup operations causing disk contention.

    3. Introducted...

  • RE: SQl 2008 using SQL 2005 management studio

    It will connect and view but you can't manage it. for example modifing a table gives this

    TITLE: Microsoft SQL Server Management Studio

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

    Unspecified error

    (MS Visual Database Tools)

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

    BUTTONS:

    OK

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

    CodeOn

    😛

  • RE: Table Without a Primary key?

    And some of us just like to denormalise just for the fun of it.

    😛

    Sorry couldn't help myself

  • RE: Replication has fallen over due to changed SA password

    THERE IS NO BUSINESS NEED OR REASON FOR THE USE OF THE SA ACCOUNT BEING USED IN AN APPLICATION OR USER. Change it to something no-one knows and keep...

  • RE: What's a Passive Server?

    Snapshotting the mirror and then using the data using bcp or SSIS activities is not passive this is because the SSIS and creating and using of snapshots are considered productive...

  • RE: What's a Passive Server?

    Passive vs Active comes down to this.

    Are you accessing the data for any purpose then NOT passive.

    Are you using the "Passive" for reporting then NOT passive.

    Are you log shipping as...

  • RE: What's a Passive Server?

    Passive... is a very relative term But, as far as SQL server licencing is concerned if you are 'using' it even readonly or DBA activity then this is deemed...

  • RE: Are the posted questions getting worse?

    Craig Farrell (12/16/2010)


    WayneS (12/16/2010)


    I can't believe that the "View is not ordered with an order by" thread is still going on. It's been thoroughly explained, and yet, still.....

    Hehehe, and as...

  • RE: View is not ordered. Why?

    Paul White NZ (12/16/2010)


    CREATE TABLE dbo.Example

    (

    row_id INTEGER IDENTITY NOT NULL PRIMARY KEY CLUSTERED,

    data AS...

  • RE: View is not ordered. Why?

    Yeah, sometimes... I think that this "View not ordered. why?" topic and the discussion that insued is a clear indication that mostly,

    1. People want to be spoon feed.

    2. ...

  • RE: View is not ordered. Why?

    GilaMonster (12/16/2010)


    Malcolm Daughtree (12/16/2010)


    I have no Idea ... another myth that needs debunking..

    Which are you saying is the myth? That the clustered index scan does always return in order or...

  • RE: View is not ordered. Why?

    Craig Farrell (12/16/2010)


    Michael Valentine Jones (12/16/2010)


    There are a lot of people that think that if you do a "select * from MyTable" that it will return data in order by...

  • RE: View is not ordered. Why?

    evald (12/16/2010)


    Paul White NZ (12/15/2010)


    Probably less than that know the full story. I trust you will do your part in educating the people you meet, now you know 🙂

    Rarely...

  • RE: Tuning slow query

    250128836 (12/15/2010)


    Please test Query SQL:

    SELECT DISTINCT A.Status

    FROM dbo.Test1 A

    LEFT JOIN dbo.Test2 B

    ON A.Status= B.Status

    WHERE A.Status IS NOT NULL

    AND B.Status IS NULL

    Because of Number of rows in dbo.Test1 A more...

Viewing 15 posts - 1 through 15 (of 105 total)