Forum Replies Created

Viewing 15 posts - 8,971 through 8,985 (of 9,399 total)

  • RE: SQL job owner

    The job steps execute with the security context of the job owner. However, assigning an owner does not mean that the login has the necessary permissions to run that...

  • RE: Today's Random Word!

    SQLRNNR (9/11/2013)


    crookj (9/11/2013)


    Daniel Bowlin (9/11/2013)


    Walter White

    Walter - (Jeff Dunham)

    Jalapeno Stick

    Spicy food 🙂

  • RE: SP_SEND_DB_MAIL Alignment Issue

    This is probably because most email clients have a true-type font as their default font and you aren't going to get those columns to line up unless you use tab...

  • RE: Deleted all users

    Andreas Wolter-332291 (9/9/2013)


    Maybe it's the issue of non-matched SIDs?

    You can use the proc sp_change_users_login to find out: http://technet.microsoft.com/en-us/library/ms174378.aspx

    Now that's a cool procedure. In the years I've worked with SQL...

  • RE: Creating a CSV file from a Trigger

    A point to consider is that if a trigger is writing out text files, the transaction itself will wait for the file to be created in the file system. ...

  • RE: Are the posted questions getting worse?

    Jack Corbett (9/10/2013)


    WayneS (9/10/2013)


    SQLRNNR (9/9/2013)


    Jack Corbett (9/9/2013)


    Hey is anyone going to be at the SQLSaturday this week in Orlando or next week in Providence? If...

  • RE: Today's Random Word!

    Revenant (9/11/2013)


    batgirl (9/11/2013)


    crookj (9/11/2013)


    Daniel Bowlin (9/11/2013)


    Walter White

    Walter - (Jeff Dunham)

    Walter Brennan

    Stumpy

    Grumpy

  • RE: Creating a CSV file from a Trigger

    I have to agree with Sean - this sounds like a bad idea. Depending on when the trigger fires, you're going to end up with an awful lot of...

  • RE: Getting duplicate values evenif used distinct

    I see from the "create table as" and to "to_char" that you're using Oracle. Sean is exactly right and DISTINCT works essentially the same in Oracle as in SQL...

  • RE: Does stored procedure exist?

    Here's another way.

    IF OBJECT_ID('ProcedureName', 'P') is not null drop procedure ProcedureName;

  • RE: Creating a CSV file from a Trigger

    Here's a way you can run a query and write the results to a text file.

    EXECUTE master..xp_cmdshell 'bcp "SELECT output_field FROM table_name ORDER BY ID;" queryout "z:\filename.txt" -C RAW -R...

  • RE: wildcards

    I actually saw the 11 characters in the last value and answered 0. When I got it wrong and read the explanation, I had to run it because I...

  • RE: Are the posted questions getting worse?

    SQLRNNR (9/10/2013)


    Brandie Tarvin (9/10/2013)


    I am seriously thinking of making DBCC Timewarp settings one of my own interview questions, just to see how far the SQL Conspiracy has spread. 😀

    What are...

  • RE: Today's Random Word!

    SQLRNNR (9/10/2013)


    eggo

    Breakfast

  • RE: export to csv

    Oracle765 (9/8/2013)


    hi there

    this just comes up with an error saying incorrect syntax near the keyword from

    That's because, as Lynn pointed out, the code is a template. You need to...

Viewing 15 posts - 8,971 through 8,985 (of 9,399 total)