Forum Replies Created

Viewing 15 posts - 31 through 45 (of 65 total)

  • RE: SSIS in cluster

    [/quote]

    nope, that would be expected, you would have to physically import the package into msdb (via SSIS) to se it in msdb.

    msdb is usually the better place to store packages,...

  • RE: SSIS in cluster

    george sibbald (7/16/2013)


    each node with two instances gives you 4 instances, and that is very much active\active, or as I believe Microsoft would officially call it, a multi-instance cluster.

    You will...

  • RE: SSIS in cluster

    george sibbald (7/15/2013)


    @DHeath

    @peacesells

    SQLAgent jobs are held in msdb and there is only one msdb per instance. You seem fixated on the nodes, is this a failover cluster with...

  • RE: SSIS in cluster

    george sibbald (7/15/2013)


    clusters use shared disks, there is only one copy of all the databases, connect to them using the virtual sql instance name (thats why its called virtual, it...

  • RE: SSIS in cluster

    george sibbald (7/12/2013)


    the name of the SQL service in the cluster, i.e. the name you use to connect to the database engine.

    The packages are normally imported to msdb, thats better...

  • RE: SSIS in cluster

    george sibbald (7/12/2013)


    use the virtual sql server name

    Thanks George.

    When you say virtual sql server Name - is that the cluster name or would that be names of the nodes....

  • RE: Switch Connection

    david.alcock (6/10/2013)


    Maybe have the two destinations set up in connection manager.

    You can then run a count in a SQL task that in turn populates a variable. You then have...

  • RE: Query result

    Lynn Pettis (5/15/2013)


    Sorry confused. Can you show us what the actual results should be when you run this code?

    LinkTable1, LinkTable2, LinkTable3 ...are different fields in the table...

  • RE: SSIS

    Evil Kraig F (5/9/2013)


    You have to RDC to the box, rt-click computer, manage, and check the services. Rt-click services and in properties for it you'll be able to see...

  • RE: SSIS

    Evil Kraig F (5/9/2013)


    What user is running the IS Service on that box?

    Evil Kraig F, I have no clue. Its our production box and i doubt if i have...

  • RE: GO (batch separator)

    GilaMonster (3/29/2013)


    Because GO is not a T-SQL statement. It's a client tool command. SQL Server has no idea what it means.

    Split that into two pieces of dynamic SQL, one that...

  • RE: GO (batch separator)

    GilaMonster (3/29/2013)


    Without seeing the code you're trying to run, pretty much no idea.

    Here is the Code Snippet

    ...

  • RE: Propagate view changes.

    opc.three (3/25/2013)


    You could do something with Dynamic SQL and a DDL Trigger, but that would be code-compiling-code-that-it-wrote-on-the-fly which can be difficult to write to where it works properly in all...

  • RE: Charindex,substring.....

    Lynn Pettis (3/15/2013)


    Not saying how efficient it is but this may work:

    declare @TestStr varchar(128) = 'DMV1004/343M.TR3432_PLC089_RIC_9843CL';

    select @TestStr where @TestStr like '%[_]%[_]RIC[_]%';

    set @TestStr = 'DMV1004/343M.TR3432_PLC089_RIC1_9843CL';

    select @TestStr where @TestStr like '%[_]%[_]RIC[_]%';

    Thanks Lynn,...

  • RE: Finding min using over(order by) in sql server

    sunder.mekala (2/20/2013)


    if i go woth your suggestion then i need to group it by the other non aggregated columns, if i group it my results will go wrong, so i...

Viewing 15 posts - 31 through 45 (of 65 total)