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 Wanet Telecoms Ltd 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 Jenns

  1. Jenns

    Problem converting data

    That works perfectly! Thanks so much! Thanks! Jenn
  2. Jenns

    Problem converting data

    Ah huh! I found out why. There are commas in there too. Rats! Now how do I handle that? Thanks! Jenn
  3. Jenns

    Problem converting data

    Thanks for the help. Your code works just fine, but when I subsitute my field name for your variable I still get "Error converting data type varchar to float". select cast(cast (myField as float) as int) as myField from myTable. Why could it convert one way and not the other? Thanks! Jenn
  4. Jenns

    Problem converting data

    Hi, I've got a varchar field that has decimal data in it. For example: 20.00, 120.00, 1120.00. I need to get the data to look like 20, 120, 1120 to link it up to ID numbers in another table. I tried converting the data to float, int and numberic, but each time it creates an error. Does...
  5. Jenns

    Casting in transformation

    I'm importing a text file into a table using a DTS package. The transformation is being done with VBscript. I need to change the script to convert (or cast) some fields as float. The text file brings them in as text and the database fields are float, thus the package fails. I have tried...
  6. Jenns

    How do I avoid Xcopy prompts?

    Hi everyone, I have a few batch files which copy files from a directory on one server to another server. There is a windows scheduled task which runs these files. The OS of the computer that task is running on has recently been upgraded to windows2000. Now when the batch files run we are...
  7. Jenns

    Merging Two fields into one

    Perfect! Thanks a lot! Thanks! Jenn
  8. Jenns

    Merging Two fields into one

    Hello, I have multiple SQL tables which contain different types of comments for companies. I want to write a query which pulls them all together for a specific company so you can easily view all the comments for that company. However I just want to see all the comments in one field. So instead...
  9. Jenns

    Unable to open multiple IE sessions

    The "reuse windows" setting is checked on both our browsers and I dont' have the problem, so I don't think that's it. However, Ctrl + N works and that's good enough for her. Thank you both! Thanks! Jenn
  10. Jenns

    Unable to open multiple IE sessions

    I wasn't sure which forum to go to with this one. An associate of mine is unable to open more than one internet explorer session. We assume it is a setting somewhere but can't find it. She is running IE 6.0 on Windows 2000. Does anyone have any ideas where the problem could be? Thanks! Jenn
  11. Jenns

    sql query question

    Golom's post is EXACTLY what I needed. [thumbsup2] Thanks! Jenn
  12. Jenns

    sql query question

    To make my problem easier to understand I have used customers and transactions which I think everyone should be familiar with as opposed to my actual application. I have a web page that displays a report of let's say Customers and purchase dates. It has multiple customers with multiple...
  13. Jenns

    How to update from a database on another server?

    Thank you J. All I needed to do was run sp_addlinkedserver in the master database and then I was able to referenece the server like you suggested. Thanks! Jenn
  14. Jenns

    How to update from a database on another server?

    I need to update data in a database on Server A with data in a database on Server B. How do I reference Server B in the query in my DTS package on Server A?. Server A is SQL2000, Sever B is SQL7 (if that makes a difference). Thanks! Jenn
  15. Jenns

    Multiple Delimiters

    Hi! Has anyone every had to import a text file into SQL Server that has more than one delimiter? I have a text file delimited with pipes and commas; however the import wizard only allows me one column delimiter. Can I get around this? Thanks! Jenn

Part and Inventory Search

Back
Top