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: *

  • Users: triggerhappy
  • Order by date
  1. triggerhappy

    Invalid Column Name when using parameter

    Everything seems fine...just to confirm hope we have updated the "Input Parameter" tab. Alternative: You can use VBScript to update the Source. dim varSql set varSql = "select (select top 1 extnrwg_060 FROM werkgever_060 where intnrwg_060 = intnrwg_250) as extwgnr, factuurnr_250...
  2. triggerhappy

    how to import such text file to sql server

    Dude...if you are still working on this.. just one thing...make sure you RTRIM your fields when you import them...as they seem to have added space Have had some probs in the past with the same...especially querying the data with added space in the values... Hope its helpful! -------------...
  3. triggerhappy

    DTS Package--splitting into different excel files

    Hey giving it a shot...since i didn't see anyone reply...not sure if you are still waiting... ------------------------------ I believe you have a table that looks like: - BusinessUnit, EmpId, EmplName, ManagerName and would like to create multiple files (excel, csv...etc) for each...
  4. triggerhappy

    Opening 2005 Data in SQL2000

    you can connect to the server through Query Analyzer...and perform normal DDL/DML operations. You cannot connect 2000 Enterprise Mgr. Also, make sure the SQL Server 2005 has the remote connections option enabled. By default this option comes disabled in SQL 2005. Hope this is helpful! --...
  5. triggerhappy

    Group String Concatenation

    Here is a quickie which should work for this scenario... One thing tho...the total for each grouping is 785 and not 805 :) --------------------------------- SELECT * FROM ( SELECT DISTINCT A.CITY , (A.CATEGORY + B.CATEGORY) AS 'CATEGORY' , (A.AVALUE + B.BVALUE) AS 'VALUE' FROM...

Part and Inventory Search

Back
Top