Forum Replies Created

Viewing 15 posts - 5,161 through 5,175 (of 19,564 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...

  • 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...

  • 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...

  • 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...

  • 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...

  • RE: recover old data

    Do you have backups of your database?

  • 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.

  • RE: Proactive sql dba activities for Production Databases

    Index Maintenance

    Backups

    Integrity Checks

    Deadlock monitoring

  • RE: Matching Missing Field

    EZ PZ

    Thanks

  • 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.

  • 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...

  • 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...

  • 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...

  • 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

  • RE: database email

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

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