Forum Replies Created

Viewing 9 posts - 1 through 9 (of 9 total)

  • RE: Merry Christmas 2013

    Yo escribiré en mi lengua natal. Muchas felicidades en estas fiestas de fin de año 2013. Que hayan pasado una FELIZ NAVIDAD en compañía de sus seres queridos, amigos...

  • RE: Conditional Flow in DTS

    great work man...simply with great potential ..sorry my english...

  • RE: Copying 3 Million Rows

    why dont use a tape backup ?

  • RE: Transferring SQL Server data to SAS ??

    sql server can export data to excel, access or .txt files via DTS ....

    it works for you ?

  • RE: Think like a DBA

    i've been programmer (VB6, .Net, ASP, using COM+ and WEB SERVICE) and i understood when you make this kind of app (3-layers), app is a "slave" of data repository (DB2,...

  • RE: Think like a DBA

    i've been programmer (VB6, .Net, ASP, using COM+ and WEB SERVICE) and i understood when you make this kind of app (3-layers), app is a "slave" of data repository (DB2,...

  • RE: Help

    you must use a trigger

    CREATE TRIGGER tr_ins_tableA

    ON tableA

    FOR insert AS

    --insert into server B; must be linked

    INSERT INTO ServerB.DataBaseB.dbo.tableB

             (col1,

             col2,

             col3,...

             )

             SELECT 

                ins.col1,

                ins.col2,

                ins.col3,...

             FROM inserted ins

  • RE: Count(*)

    Very strange.  I assume that the column 'date' not this defined like so.  But the probable thing is that it has an error in the definition of the value for...

  • RE: Executing a Package from Visual Basic

    good for start, but if I have more complex dts...may be I can create a job and after execute it from vb.exe with

    "sp_start_job @job_name = 'My Job'"

    using and ADO connection...

Viewing 9 posts - 1 through 9 (of 9 total)