Forum Replies Created

Viewing 15 posts - 7,591 through 7,605 (of 13,876 total)

  • RE: Select Latest record by comparing 2 tables.

    For each combination of machine/instance?

  • RE: Select Latest record by comparing 2 tables.

    kavithaje (2/4/2016)


    Sorry i did not understand clearly.

    Can you please give me some real example with the below query?

    Thanks in advance.

    Without knowing your table structures, the examples provided are as real...

  • RE: Are the posted questions getting worse?

    Grant Fritchey (2/4/2016)


    Grumpy DBA (2/4/2016)


    In the past I worked with a couple developers (SQL and Oracle) who used Select * quite often. At every code review I would point...

  • RE: Select Latest record by comparing 2 tables.

    John Mitchell-245523 (2/4/2016)


    WITH Combined AS (

    SELECT Timestampcol, <other columns>, 'Table1' AS TableName

    FROM Table1

    UNION ALL

    SELECT Timestampcol, <other columns>, 'Table2'

    FROM Table2

    )

    SELECT Timestampcol, <other columns>, TableName

    FROM Combined

    John

    I think you might need to extend...

  • RE: Compability level

    Edvard Korsbรฆk (2/4/2016)


    Well, I found the correct answer in the end.

    checked on the DB, which was used by the customer - it had level 110.

    Next question is of cause, what...

  • RE: What is the True Version of Code?

    Orlando Colamatteo (2/3/2016)


    removed silly post...

    Your own, presumably? ๐Ÿ™‚

  • RE: Compability level

    You seem to have found the correct answer, using the wrong technique ๐Ÿ™‚

    Different versions of SQL Server support different compatibility levels (see here).

    Within a SQL Server instance, databases can have...

  • RE: Source control with SSIS

    Have a look at TFS Power Tools.

    You'll need to select the correct version for your environment. Once you've done that, you'll get a certain amount of TFS functionality available to...

  • RE: Running SSIS packages from CMS server on target servers

    Orlando Colamatteo (2/3/2016)


    SQL_Surfer (2/2/2016)


    I've about 200 SSIS packages that needs to be run on 10 different instances. What is the best way to configure this dynamically? Ideally I'd like to...

  • RE: FTP with Configuration Manager for Connection String

    Dave R (UK) (2/3/2016)


    Currently not running 2012 so not an option ๐Ÿ™

    Really frustrated as the solution works with the one exception of multiple lines in configuration table

    OK. Then you are...

  • RE: Running SSIS packages from CMS server on target servers

    I just had another idea, which may or may not work in practice.

    Create a 'master' package. This package searches a specific local folder and executes any packages it finds there.

    Deploy...

  • RE: Running SSIS packages from CMS server on target servers

    SQL_Surfer (2/2/2016)


    I've about 200 SSIS packages that needs to be run on 10 different instances. What is the best way to configure this dynamically? Ideally I'd like to store them...

  • RE: FTP with Configuration Manager for Connection String

    Dave R (UK) (2/3/2016)


    Hi all,

    a, hopefully, quick question if I may.

    I am creating packages for a client that utilises an FTP Connection Manager. I have set this up, tested...

  • RE: What is the True Version of Code?

    roger.plowman (2/2/2016)


    Phil Parkin (2/2/2016)


    roger.plowman (2/2/2016)


    Phil Parkin (2/1/2016)


    roger.plowman (2/1/2016)


    below86 (2/1/2016)


    roger.plowman (2/1/2016)


    "

    Instant fail.

    You NEVER EVER EVER put a change into production without going through development/QA/approval/whatever.

    NEVER.

    Here is the reason I would NEVER EVER...

  • RE: What is the True Version of Code?

    roger.plowman (2/2/2016)


    Phil Parkin (2/1/2016)


    roger.plowman (2/1/2016)


    below86 (2/1/2016)


    roger.plowman (2/1/2016)


    "

    Instant fail.

    You NEVER EVER EVER put a change into production without going through development/QA/approval/whatever.

    NEVER.

    Here is the reason I would NEVER EVER want to be...

Viewing 15 posts - 7,591 through 7,605 (of 13,876 total)