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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by ton12

  1. ton12

    Connecting to SQL Server 2008 thru Managment Studio error

    Hi SQLBill, Thanks for your suggestion. I tried with square brackets but still doesn't work. Tony
  2. ton12

    Connecting to SQL Server 2008 thru Managment Studio error

    I'm using SSMS 2008 which points to : "C:\Program Files\Microsoft SQL Server\100\Tools\Binn\VSShell\Common7\IDE\Ssms.exe
  3. ton12

    Connecting to SQL Server 2008 thru Managment Studio error

    XP Professional SQL Server 2008 - Developer Edition I have SQL Server 2005 installed and running fine. I installed SQL Server 2008 correctly, no error message. The instance is named 'SQL2008'. The Server is DELL-BDD3. When I connect to DELL-BDD3\SQL2008 thru SQL Server Management...
  4. ton12

    SQL Server logging - sysdtslog90 not created

    Hi, I have a simple package where I move the content of a table to a text file.I have enabled SQL Server logging to write to a database. (SQL Server 2005) The package runs ok but I do not see the table 'sysdtslog90' being created. Ton.
  5. ton12

    How to automatically delete default views?

    Hi, Any suggestion of how to automatically delete default views created (e.g view2, view3...). Thanks. Ton
  6. ton12

    Anyone with complex JOIN experience

    Hi, I have four tables Tab1,Tab2,Tab3 and Tab4 and I need to create a fifth table using values from Tab1 and Tab4 but there are no common columns between Tab1 and Tab4. However, there are common columns beween. Tab1 and Tab2 Tab2 and Tab3 Tab3 and Tab4 Table Columns ---- -------...
  7. ton12

    Making SSIS Packages Portable

    I would like to store my configuration info in a SQL Server table. Can anybody point me to a url where there is an example of SQL Server package configuration set up. Thanks
  8. ton12

    How to handle special characters with SSIS?

    The data types of the variables are defined as 'String'
  9. ton12

    How to handle special characters with SSIS?

    Hi, Here is part of the code : Dim Delimiter1 As String Dim Delimiter2 As String Dim TextLength As Integer Dim TextLine As String Dim Line As String Dim fs As New FileStream(FileName, FileMode.Open, FileAccess.Read) Dim sr As New...
  10. ton12

    How to handle special characters with SSIS?

    Hi, here is part of the code : ----------------------------------------------- Line = TextLine.Replace(Delimiter1, Delimiter2) ind = Line.ToString.LastIndexOf(Delimiter2) ---------------------------------------------- Delimiter1 - é Delimiter2 - | line is "11111é2222222é333" Thru debugger...
  11. ton12

    How to handle special characters with SSIS?

    Thanks. I'm writing the info to a file. I have no error message but it is not replacing the "é" by '|'. Instead, it is being replaced by a special character (a square). Any suggestions? Ton
  12. ton12

    How to handle special characters with SSIS?

    I need to replace all column delimiters in a flat file by "|". I need to replace all "é" by "|". If the delimiter is any character to be replaced by "|", there is no problem, it works fine. But with special characters I have an error message concerning the Substring clause as it cannot cope...
  13. ton12

    SSIS : How to copy data from SQL Server to Oracle

    Thanks fo the data flow task solution but I need to cater for different table names. I might have to copy Tab2 or Tab11 to Oracle but I w'ont know in advance the table name that needs to be copied. The matching table name will exist in Oracle. The value of the table name to be copied is...
  14. ton12

    SSIS : How to copy data from SQL Server to Oracle

    I have a table TAB1 in SQL Server and would like to copy its content to a table TAB1 on ORACLE having the same column names and datatypes. The database connection to the Oracle database has been set and I can see the table. Any suggestions how to implement it in task...

Part and Inventory Search

Back
Top