Forum Replies Created

Viewing 15 posts - 6,196 through 6,210 (of 7,164 total)

  • RE: Distributed databases

    aaroww11 (6/5/2011)


    2. Service broker

    MySpace successfully implemented a distributed database using Service Broker in 2009 to replace a very complex replication scheme. They were probably the majority, if not the sole...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Using output parameters with OLE DB Source in Data Flow Task - SSIS 2008

    This thread basically explains what I was thinking you would have to do but I would call it a workaround if anything...not really an elegant solution by any means.

    http://social.msdn.microsoft.com/Forums/en-US/sqlintegrationservices/thread/d85668b6-2981-4b1c-978d-227483d03bae/%5B/url%5D

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Using output parameters with OLE DB Source in Data Flow Task - SSIS 2008

    SSIS 2005 or 2008?

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Error 18452, I've searched high and low and I'm stumped

    Is the database instance on Server1 a named instance?

    Some things to look into:

    Is SQL Browser running on Server1?

    Is port 1434 open between Wrokstation1 and Server1? Use PortQryv2 to find out.

    Does...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: TSQL

    My fault. I knew the for each proc made use of EXEC and I did not know it would have access to temp tables declared outside the EXEC-scope. The real...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Need How to get the Diagnol elements in the table

    Looks like homework...

    Lookup the NULLIF and COALESCE functions.

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Update sybase table based on sql server table

    Elliott Whitlow (6/7/2011)


    While it is possible to use a linked server in this case I would absolutely NOT do it. I used to be a BIG proponent of linked...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: which is the best institute for sql server dba?

    SQLRNNR (6/7/2011)


    check out these guys http://www.sqlskills.com

    That's who I thought of first too and it's why I asked about current level...immersion training is not for beginners. I went to one of...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: populate 2 column results in a column

    For this example you can use a simple UNION:

    Setup:

    IF OBJECT_ID(N'tempdb..#tbl') > 0

    DROP TABLE #tbl;

    GO

    CREATE TABLE #tbl

    (

    foreign_curr CHAR(3),

    local_curr CHAR(3),

    period CHAR(2),

    yr SMALLINT,

    ytd_ave_rate...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: which is the best institute for sql server dba?

    The School of Hard Knocks is the best one I have found.

    For formal training:

    > Are you willing to travel?

    > How long have you been working with SQL Server and...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: TSQL

    Every iteration done inside the "for each" proc is done on an independent thread so you need to use a global temp table or a permanent table. Try it like...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Correct use of CTE?

    Please post DDL for your tables, DML to add some test data that lets your query demonstrate the problem, and your expected results. If you're not sure what I mean...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Insert loop

    Do tell why you decided to use a loop. Also, please provide the DDL for TableA and TableB.

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Datatype question

    Jason Shadonix (6/7/2011)


    But would that cause SQL to suddenly feel the need to ship the whole table to the calling server when that field isn't involved in the WHERE clause?

    Not...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: New code IFCode

    Great, thanks Steve!

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

Viewing 15 posts - 6,196 through 6,210 (of 7,164 total)