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 eselhassan

  1. eselhassan

    For Loop, While Loop to Manipulate Data

    select cast(substring(PID,10,4)-right(PID,4) as int) returns an invalid operator for data type error. I'm going to try SQLDenis suggestion shortly. Thanks for the help.
  2. eselhassan

    For Loop, While Loop to Manipulate Data

    Thanks ca8msm, I'm trying to construct the select statement first. Here is what I have so far: select CODE = case when len(PID) = 17 then left(PID,9) substring(PID,10,4) else PID end from mySourceTable My question is how do I proceed further with the code to be able to...
  3. eselhassan

    For Loop, While Loop to Manipulate Data

    My table has the field (PID varchar 17) either 13 or 17 character records. I would like to use the logic below to construct a new table with two fields (CODE varchar 13) and (CODEKEY varchar 17) IF len(PID) = 13 Then insert into iTable ESLE IF len(PID) = 17 Then 1. insert the first 9 characters...
  4. eselhassan

    Update Query in Linked Server

    Question for James, t1 and t2 are those sql tables? are they temp tales then or what? Thanks
  5. eselhassan

    Update Query in Linked Server

    The SQL table is one that keeps all employees even those retire, terminated, etc.. The AS400 file that holds same data only has current employees. I want to do an update to the SQL table ... which means appending only the new employees from the AS400 file. Here is some code UPDATE sqlEmp SET...
  6. eselhassan

    Update Query in Linked Server

    I'm currently using OPENQUERY to move data form AS400 to SQL. INSERT is what I use and it is working just fine. However I'm just curious on how UPDATE query syntax is written for similar puropse. Any headsup is appreciated. Thanks
  7. eselhassan

    Count Before Delete & Insert data

    Thanks to all for their response. I end up with the following: IF (select * from openquery(MYLINKEDSERVER, 'select count(*) from myFile/myLib')) > 0 BEGIN DELETE mySQLtable INSERT INTO mySQLtable(R1, R2, R3) SELECT * from openquery(MYLINKEDSERVER, 'select W1, W2, W3 from...
  8. eselhassan

    Count Before Delete & Insert data

    Hi all, From SQL Server I linked to an iSeries AS400 and everything works just fine. I can query the AS400 file/table with the following count statement: select * from openquery(MYLINKEDSERVER, 'select count(*) from myFile/myLib') I would like to use an IF statement first to check whether the...
  9. eselhassan

    SQL JOIN Query

    I suggest you write some code and let us know what you'r thinking and I'm sure someone will help you.
  10. eselhassan

    Error 21776 [SQL-DMO]

    You right nigelrivett, Query Analyzer does the trick. What I found out was that when you run Enterprise Manager Wizards against objects owned by anyone other than yourself or dbo, you will receive such an error. The solution for me was to user either Query Analyzer or Edit server registration...
  11. eselhassan

    Error 21776 [SQL-DMO]

    I'm geting the error message "Error 21776 [SQL-DMO]the name 'mytable' was not found in the Tables collection". I was trying to create a non clustered index on 'mytable' using the Wizard from Enterprise Manager. This is happening to all the talbes in that database. How can I correct...
  12. eselhassan

    Decimal Data Type

    Hello all, I have a decimal data type in my table that holds financial data. I setup the scale to 2, so it holds the decimal places. SQL for some reason kept rounding up. How do I display the data as is. Example, 125.89 display as 126.00 Should I use 'money' data type rather than the decimal...
  13. eselhassan

    Snapshot Folder Path Message in Replication

    Hi everyone, I'm trying to setup transactional replication. During the process of setting up the Distributor I'm getting the following message: "The snapshot folder path, "\\\MyServer\D$\MSSQL\...", uses a special share name which can usually be accessed only by a login with...
  14. eselhassan

    Upload Data on our Internet Hosting SQL Server

    Hey AngelWPB could you please point me to a document or something about how to set up such a process. That would be great. I'm still open for more ideas. Thanks
  15. eselhassan

    Upload Data on our Internet Hosting SQL Server

    Hell everyone, I currently have our AS400 linked to SQL Server and we are doing a nightly upload from AS40 to SQL. This process is working great and our intranet site is flying. We need to upload some what same data into our internet hosting company's SQL server. I'm just looking for ideas...

Part and Inventory Search

Back
Top