Forum Replies Created

Viewing 15 posts - 6,091 through 6,105 (of 8,753 total)

  • RE: Are the posted questions getting worse?

    Jeff Moden (2/27/2015)


    Lynn Pettis (2/27/2015)


    ZERO DAY! Leaving Afghanistan!

    Going Dark!

    Zero bottles of beer on the wall.

    Zero bottles of beer!

    For those that roam,

    Just come on home,

    To one hundred bottles...

  • RE: houston we have a problem... SSIS : SQL -> AS400 DB2

    Quick thought, check that the DB2 ODBC drivers are installed on the server running the SSIS and that they match the architecture of the SSIS package execution.

    😎

  • RE: Premature casting on 0 rows insert

    Just a hunch, suspect cached temp table might cause this.

    😎

  • RE: SQL Standart Edition x SQL Enterprise Edition

    Quick point, run this query on the existing server to list the enterprise features in use

    😎

    SELECT

    PF.feature_id

    ,PF.feature_name

    FROM sys.dm_db_persisted_sku_features PF;

  • RE: Spreading value across financial year

    Hi and welcome to the forum!

    There are several ways of achieving this, here is one example of a cross-tab type solution, should get you passed this hurdle.

    😎

    USE tempdb;

    GO

    SET NOCOUNT ON;

    DECLARE...

  • RE: Help Needed in Alternate column value

    Alternative solution which is more efficient but behaves slightly differently as it will bring back messages from both tables if they exist.

    😎

    SELECT

    CM.message

    FROM @compMessage...

  • RE: Error Renaming Logical Filename

    petemill66 (2/27/2015)


    I have a SQL Server 2008 R2 Cluster. I have moved a file to another drive by adding a new file on the drive, doing a...

  • RE: MSSQL service unable to start after I upgrade from 2008 R2 SP1 to SP2.

    roderickdelatorre (2/27/2015)


    Hi,

    Need you assistance.

    script level upgrade for database master failed because upgrade step 'sqlagent1000_msdb_upgrade.sql'

    encountered error 5833, state 1, severity 16.

    Thanks,

    Rick

    This post[/url] could help

    😎

  • RE: Convert 6 digit letter to month and Year

    Further on Jeff's fine solution, you may want to consider converting the column from (var)character data type to date data type. Not only does it take less storage (3 bytes),...

  • RE: Are the posted questions getting worse?

    Grant Fritchey (2/27/2015)


    Assuming the Threadizens are aware of this since you're a giant bunch of nerds, but...

    Spock is dead.

    Leonard Nimoy passed away today.

    RIP

    \\//,

    😎

  • RE: Nested Cursor example

    Jeff Moden (2/26/2015)


    There's no question here. The third select on the original post shows the set-based replacement for the cursors. The title truly reflects what was posted... it's...

  • RE: T sql

    serg-52 (2/27/2015)


    Barcelona10 (2/26/2015)


    SELECT t1.*,t2.dueDate

    FROM Table1 t1

    LEFT JOIN Table2 t2 ON t1.ID = t2.ID

    WHERE t2.dueDate='2014-01-02'

    GO

    SELECT t1.*,t2.dueDate

    FROM Table1 t1

    LEFT JOIN Table2 t2 ON t1.ID = t2.ID

    ...

  • RE: Export Data to Client's remote desktop

    The same way as any other download, the client initiates the download by clicking a link/button and the source of the file is the output of the stored procedure. Alternatively...

  • RE: Sql Question

    Simply replace ' & ' with '&'

    😎

  • RE: Export Data to Client's remote desktop

    MaggieW (2/26/2015)


    Dear all:

    I need to write a stored procedure or SSIS to export data to client's desktop. What is the best way to achieve it?

    The requirement is to develop a...

Viewing 15 posts - 6,091 through 6,105 (of 8,753 total)