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 Mike Lewis 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. SimeonJ

    Select Statement not working....

    I can read the query, but could you please put into words exactly what it is that you are trying to do?
  2. SimeonJ

    Can I just Import several Rows from Text files

    If the text file is an excel file, yes, you can import only a specific number of rows. You just query the excel file and then insert into the database table. If the file is a basic TXT file or the like, I would recommend first importing that file into an excel file and then query/insert into...
  3. SimeonJ

    Replacing Nulls

    here is another solution: update dbo.mytable set [ColwithNulls] = '' where [ColWithNulls] is null
  4. SimeonJ

    Populating a Global Variable Output Rowset using ActiveX Script

    set your code to find the file names as a variable (something like "vFilePath") then use the code below: DTSGlobalVariables("SourceFiles").Value = vFilePth When you want to reuse the data inserted into the global variable you will assign the global variable to a variable (like shown below)...
  5. SimeonJ

    ActiveX Script in DTS

    Try this... it will pop up a input box for the executor to enter a username and then a password. '********************************************************************** ' Visual Basic ActiveX Script '************************************************************************ Function Main() dim...
  6. SimeonJ

    Updating SQL Tables from another DB

    Create a stored procedure that updates the data where needed.
  7. SimeonJ

    SQL Number Change

    I'm having the same problem, I've been researching this for a while now without any luck. I'll be sure to let you know if i figure out a solution. :)
  8. SimeonJ

    Meaning of arrangements of icons

    It sounds like you have way too much clutter in your package. the connection is only used to specify what server/database you are using. If everything resides on the same server(even if the data is in different databases) you only need one connection.
  9. SimeonJ

    Matching values but do not get expected result

    My best guess is that the where clause may not be formed correctly.
  10. SimeonJ

    data changes to Scientific Notation upon importing into table

    All, When I'm importing some data into a table, the values in some places are being changed to scientific notation. I'm unable to use the data that is changed to scientific notation. Does anyone know why this is happening? How can i stop this from happening? Thanks in advance! Simeon

Part and Inventory Search

Back
Top