Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. crjones

    Can anyone suggest a connector between MS Sql and IBM DB2?

    I wish it was that easy. Have tried MS, Hit, DataDirect, All have various problems. HiT has been the most willing to work with us so far. Will continue and post what we find.
  2. crjones

    Convertins strings to dates

    I retract, Didn't notice the brit time first time around.
  3. crjones

    Merging Date and Time Information

    Oh my! Sorry! Forgot a step. The Convert(DateTime, DateFiled + ' ' + TimeField, 103) is still valid, but MS does not suggest adding binary values to datetime fields, instead, use the dateadd function. Therefore, the final solution is: DateAdd( s, 30, Convert(DateTime, DateField + ' ' +...
  4. crjones

    Merging Date and Time Information

    Ah, brit time. This is simpler... Assuming Datefield and TimeField are char values... Convert(DateTime, DateFiled + ' ' + TimeField, 103) Ta! ;-) -crj
  5. crjones

    Can anyone suggest a connector between MS Sql and IBM DB2?

    Have been having a difficult time getting a connector to work between Microsoft Sql Server 2000 and IBM DB2 Universal Database, over TCP/IP, both running on Win 2K machines. Has anyone had any success?
  6. crjones

    DTS Export from SQL Server to Excel File

    Yup, no problem. Create a new DTS Package, Specify Sql Server as Source, Then XL as Destination, And Data Transform Between. Set your query in the Data Transform Source.
  7. crjones

    Convertins strings to dates

    CAST(mDate as DateTime)
  8. crjones

    Starting a job through a bat file

    I'm pretty sure there's an option to run DTS from the command line, dtsrun or something, but I do like using Sql Server Agent much better...In fact, can't you schedule directly from Enterprise Manager? I think you can even notify via email if the DTS fails...
  9. crjones

    Can anyone suggest a connector between MS Sql and IBM DB2?

    Have been having a difficult time getting a connector to work between Microsoft Sql Server 2000 and IBM DB2 Universal Database, over TCP/IP, both running on Win 2K machines. Has anyone had any success?

Part and Inventory Search

Back
Top