Forum Replies Created

Viewing 15 posts - 3,331 through 3,345 (of 6,486 total)

  • RE: Jobs and executing stored procedures in T-SQL

    etxeb (5/14/2008)


    Matt Miller (5/14/2008)


    If the CSV show up once per day/gets modified just once in a while, running something continuously in the hopes of catching the mod time is, well...

  • RE: Trigger Help

    Jack Corbett (5/14/2008)


    Matt Miller (5/14/2008)


    Jack Corbett (5/14/2008)


    SQL Server does not have before triggers. In SQL Server you would use an after trigger and then use the virtual inserted and deleted...

  • RE: dynamic variable?

    is250sp (5/14/2008)


    Jason Selburg (5/14/2008)


    Place a semi-colon at the end of the line immediately before the WITH statement.

    Jason, can you please be more clear on where I should put the semi-colon?

    While...

  • RE: Trigger Help

    Jack Corbett (5/14/2008)


    SQL Server does not have before triggers. In SQL Server you would use an after trigger and then use the virtual inserted and deleted tables. I will post...

  • RE: Jobs and executing stored procedures in T-SQL

    etxeb (5/14/2008)


    mtassin (5/14/2008)


    Not 100% sure I follow,

    1. You have an application that drops csv files to a specific folder on an ad-hoc type of basis

    2. You need to read...

  • RE: The CLR

    Solomon Rutzky (5/13/2008)


    developmentalmadness (5/13/2008)


    - the Table-valued functions need to materialize their entire recordset before being able to return anything, so they can quickly "swamp" the memory area.

    This is...

  • RE: The CLR

    Renato Buda (5/14/2008)


    Regexp Expressions

    Compression of Blobs

    Concatenate() aggregate function

    All the above have proved useful.

    **** The 8K limit is an urban myth!!! ****

    see the following for a sample:

    http://www.codeproject.com/KB/database/blob_compress.aspx

    Yup - I've...

  • RE: Report Parameters? or some other way for users to select criteria :unsure:

    yup - just like Jeff mentioned. Just make the values 'Dev','Prod', and 'test' (skipping the quotes when you type it in.)

  • RE: Report Parameters? or some other way for users to select criteria :unsure:

    1. get the report to something SQL static.

    2. once you're through the initial wizard, click on report, parameters, add a new parameter, and populate the drop down area (label and...

  • RE: Uncomfortable situation at office

    jsheldon (5/13/2008)


    Ok this is ugly...we are a small company, we have gone through a lot of turnover (not in IT but in the company in general) one of our IT...

  • RE: adding columns using derived column transformation

    thenepatsrule (5/13/2008)


    CAST STATEMENT? which transformation do i have to use for this

    thanks

    You'll need two different pieces. One is you need to use a derived column task so set up...

  • RE: Report Parameters? or some other way for users to select criteria :unsure:

    SQL-Retard (5/13/2008)


    I have been tasked by our VP to create reports for the Server Information DB that I created... I am learning basic SQL as I go along, and now...

  • RE: String comparison with trailing spaces

    Jack Corbett (5/13/2008)


    Matt Miller (5/13/2008)


    I know:) Concatenation is different.:D

    It just seems inconsistent behavior. As in -

    Primary Key - trim it

    comparison - trim it

    concatenation - don't trim it

    storage...

  • RE: String comparison with trailing spaces

    I know:) Concatenation is different.:D

    It just seems inconsistent behavior. As in -

    Primary Key - trim it

    comparison - trim it

    concatenation - don't trim it

    storage - don't trim it

    group...

  • RE: String comparison with trailing spaces

    GSquared (5/13/2008)


    I just checked my databases and servers, and ANSI padding is False on all of them, but per BOL:

    Important:

    In a future version of SQL Server ANSI_PADDING will...

Viewing 15 posts - 3,331 through 3,345 (of 6,486 total)