Forum Replies Created

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

  • RE: Stored procedure and ODBC

    Won't Microsoft OLE DB Provider for ODBC Driver work?

    Since DTS can 'see' your ODBC, I'm sure you could create a liked server to it.

    I'd stay clear of cursors in...

  • RE: Stored procedure and ODBC

    Create a linked server to the ODBC data source and use the linked server in your stored procedure or use OPENROWSET keyword..  Check OPENQUERY and/or OPENROWSET in BOL.

  • RE: DTS Tasks not available

    I would suggest you reinstall the Client Tools and Uilities on that workstation.

  • RE: error 17883

    I got the same error on one of my servers last week. I've read all the KB articles but decided to watch that server and not apply the hot...

  • RE: Schedule DTS job to retrieve data from AS400

    If you want to use the SQL Server Agent to launch scheduled DTS packages, you must install the IBM ODBC driver on the SQL Server system.

  • RE: Replication and Log Shipping

    You should be able to set up replication from Standard Edition to Enterprise Edition. But the Standard Edition does not allow you to do Log Shipping. However, I've...

  • RE: Help with Between Statement

    I guess this has to do with converting the characters to datetime variable. You may need to do an explicit conversion. If you show your code comeone may...

  • RE: setting connections dynamically

    You may use the Dynamic Properties task for this.

  • RE: Sending Attachments by mail thru a SQL Job

    You may need to have SQL Server start under the same domain account as SQLServerAgent. Also create the profile while logged in the SQL Server machine with the starting domain...

  • RE: How to find which procedures user a certain table

    From EM, right click on the table, select All Tasks, and select Display Dependencies.

    In QA or with T-SQL you may have to look into the sysdepends table (master database) for...

  • RE: INSTEAD-OF Trigger on IDENTITY Column

    If you are not using the view to select the primary key column, you could remove that from the view definition like so:

    <code>

    ALTER VIEW dbo.VIEWTesting

    WITH VIEW_METADATA

    AS

    SELECT testdesc

    FROM dbo.TBL_Testing

    </code>

    This will...

  • RE: INSTEAD-OF Trigger on IDENTITY Column

    Could you post your view creation code??

  • RE: Identifying Duplicates (Not the usual)

    If you had a CustomerNo as the primary key in your table and accept user input via the CustomerNo, you wouldn't have this problem.

    What logic would you use to know...

  • RE: Can I declare global variables?

    T-SQL has no concept of global variable in the way you described. So the solution you outlined is the way to go. You may however need some careful planning...

  • RE: Executing DTS via Command Line

    I don't use ColdFusion but if you have VB, add a reference to Microsoft DTSPackage Object Library in a new VB Project. Add a command button to a form and...

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