Forum Replies Created

Viewing 15 posts - 7,906 through 7,920 (of 13,882 total)

  • RE: Sync Tables

    Ratheesh.K.Nair (11/17/2015)


    Hi Experts,

    Is there anyway to sync few tables of two live databases which are hosted in different servers?

    TIA

    Is that a two-way sync?

  • RE: Data Conversion in ssis

    vipin_jha123 (11/17/2015)


    It is having Numeric data type

    Only because that is what is assigned to it by SSIS. You can change this.

    But I say again: flat file columns have no (explicit)...

  • RE: Data Conversion in ssis

    Data in flat files does not have a data type.

  • RE: Using Lile and OR in a WHERE clause

    Luis Cazares (11/16/2015)


    Phil Parkin (11/16/2015)


    There was a problem with your final LIKE. '%%' does not mean anything more than '%', which in turn means anything or nothing.

    Anything or nothing that...

  • RE: Using Lile and OR in a WHERE clause

    David Tooker (11/16/2015)


    Hi,

    I need to use a Like statement with an Or statement in a where clause. below is what I am trying to do and the @ProjectType can...

  • RE: SSISDB question

    OK, now I understand better. I get round that limitation (as suggested in previous posts) in a different way:

    use SSISDB

    go

    exec catalog.set_environment_variable_value @folder_name = N'_environments', -- nvarchar(128)

    @environment_name...

  • RE: SSISDB question

    Mike01 (11/16/2015)


    That's the procedure I am calling. I explicitly created a nvarchar variable and passed it into this proc. When this line runs, it returns Varchar instead of Nvarchar

    SET...

  • RE: SSISDB question

    Not sure whether this will work for you, but I do something similar.

    I have a project deployed to SSISDB and have configured it so that certain params in the project's...

  • RE: Particular fields not importing in SSIS Package

    dbman (11/16/2015)


    Hello,

    Thanks for reply. I have tried that previously on all columns and its still not importing.

    Regards

    Not all columns. I am talking specifically about the single column in your...

  • RE: Particular fields not importing in SSIS Package

    dbman (11/16/2015)


    Hello,

    I have developed an SSIS package whereby a file is split into a number of tables. I have a conditional split, derived column and data conversion task.

    The file is...

  • RE: Primary key and unique indexes question

    This bit

    but VhID and PrID can be the same in one row so long as ExtID is different

    Needs to be elucidated.

    I read it as

    There can be only one row where...

  • RE: Primary key and unique indexes question

    (1) and (2) – create 2 unique indexes.

    (3) needs a little more explanation. Are you saying that it's OK for

    VhID ==PrID

    and

    PrID != ExtID

    but only on a single...

  • RE: SQL Power of 2

    Can you describe the logic please?

  • RE: SSIS 2012 Parallel Execution

    Work from the outside in, loading the tables with no dependencies first. The fact table comes last.

    Why? Because the tables closer to the fact tables depend on the existence of...

  • RE: Assigning TOP 1 value to a variable in a stored procedure

    Try

    Select top 1 @Var = Col

Viewing 15 posts - 7,906 through 7,920 (of 13,882 total)