Forum Replies Created

Viewing 15 posts - 5,161 through 5,175 (of 19,560 total)

  • RE: recover old data

    It is possible that it would be in a maintenance plan. It is possible that it is being run through a 3rd party app. It is possible that...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: how to get the source code from .rdl file

    dineshvishe (1/17/2013)


    I want sql statement from Rdl file then what to do ??

    Load the rdl file into a solution and then get the sql statement from there.

    Otherwise, parse the xml...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Query Help..

    I think it would be a good idea to first familiarize yourself with the data and processes before trying to assess which tables, procs and indexes are unused. As...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Serious Security

    I think that security is the duty of all involved from end-user to developer. However, one thing to consider in the economics of security is the annoyance and cost...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: recover old data

    fatinnadiah88 (1/17/2013)


    we do have backups but i'm not sure where to check why i can only see only the past 3months data.

    If you have a backup of the database, then...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: recover old data

    Do you have backups of your database?

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Fun with ACID

    I read this article expecting Rainbows and Unicorns. Instead I got Homer and Pizza. What a warped sense of humor you have. 😀

    Seriously though - Well Done Brandie.

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Proactive sql dba activities for Production Databases

    Index Maintenance

    Backups

    Integrity Checks

    Deadlock monitoring

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Matching Missing Field

    EZ PZ

    Thanks

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: DB Shrinking Question

    Have you tried to manually shrink?

    Also, after shrinking, did you also do an index defrag? Reindexing can cause the database to grow back out.

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: When can I use an alias?

    The X isn't necessary. You asked about delete statements not working with aliases. That is merely a demo showing that aliases do in fact work with delete statements.

    As...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Need to convert Varchar to Money with symbols

    GSquared (1/16/2013)


    The Replace() version is better than the Case version. But you should still seriously consider moving that kind of thing to the presentation layer of the application.

    I agree...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: When can I use an alias?

    Here is a script demonstrating a delete using an alias as well as using the alias X

    Use Tempdb;

    GO

    CREATE TABLE demodelete (somenum INT);

    INSERT INTO demodelete (somenum)

    VALUES (1),(2),(3),(4);

    SELECT * FROM demodelete;

    DELETE X

    FROM...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: database email

    Here is an article from microsoft on creating SQL Agent jobs

    http://msdn.microsoft.com/en-us/library/ms135739(v=sql.105).aspx

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: database email

    Add the query to a SQL Agent Job. Schedule the job to run nightly.

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

Viewing 15 posts - 5,161 through 5,175 (of 19,560 total)