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!

Search results for query: *

  1. alrightydooda

    How can I reverse a string in PL/SQL?

    Thanks carp that worked a treat!
  2. alrightydooda

    How can I reverse a string in PL/SQL?

    Here is a clearer example of what I'm looking for: SELECT INSTR('MRFL', 'RF') REV_SRCH FROM dual; This returns 2. SELECT INSTR('LFRM', 'RF') REV_SRCH FROM dual; This returns 0. I'm looking for a function to reverse this variable (LFRM) so that it matches the first example.
  3. alrightydooda

    How can I reverse a string in PL/SQL?

    Hi, Is there a PL/SQL equvalent to the strReverse function in VB? I'm tring to check a string for the existance of a substring and i need to check it forwards and in reverse order. e.g: Here is the code I have for checking if r_map.surface_code exists in psurfacecode, but what I am asking is...
  4. alrightydooda

    cannot add data to a calculated field in a disconnected recordset

    VB6.0 SQL Server2000 Hi, I am trying to add data to a calculated field in a disconnected recordset and i am getting the following error: "Multiple-step operation generated errors. Check each status value." Here is the query for the recordset: SELECT table1.amount_charged, table1.deductible...
  5. alrightydooda

    PL/SQL to T-SQL conversion

    OK I've figured it out: OPEN c1 While (@@FETCH_STATUS = 0) BEGIN FETCH c1 INTO @StageDesc set @Treatment = @Treatment + @StageDesc + char(13) END
  6. alrightydooda

    PL/SQL to T-SQL conversion

    Hi, I am trying to convert an oracle database function into a SQL Server function and i am stuck on a particular line of code. Here is the PL/SQL: OPEN c1; LOOP FETCH c1 INTO StageDesc; EXIT WHEN c1%NOTFOUND; Treatment := Treatment || StageDesc ||chr(13; END LOOP; Here is what i have...
  7. alrightydooda

    How do I update table1 with data from table2

    That did the trick thanks a million!
  8. alrightydooda

    How do I update table1 with data from table2

    Thanks this seems to be heading in the right direction. However now i'm getting error "ORA-01779 cannot modify a cloumn which maps to a non key-preserved table" any idea what this means?
  9. alrightydooda

    How do I update table1 with data from table2

    Hi, I have 2 tables and i need to update data in the first table with data from the second table. The following statement will not work but it will give you an idea of what i am trying to do. UPDATE table1 SET table1.code_id = table2.system_id WHERE table1.code_id = table2.code_id I am...
  10. alrightydooda

    How can I export an Oracle8i database using an Oracle9 client and EXP

    Argh! Thats the answer I didn't want to hear! Thanks for your help.
  11. alrightydooda

    How can I export an Oracle8i database using an Oracle9 client and EXP

    Hi, I have a database which is stored in Oracle8i and all the client machines are running Oracle9. My problem is that i do not have access to the server and must use one of the client machines to export the database using the "exp" command. I am getting the following error...
  12. alrightydooda

    Error 1327: invalid drive n:/

    Thanks for the advice. This error is actually a windows error which is why I had so much difficulty finding any info on it when searching Wise related help. See this for help: http://support.microsoft.com/default.aspx?scid=kb;en-us;282183 Its related to mapped network drives, my problem was...
  13. alrightydooda

    Error 1327: invalid drive n:/

    Has anyone come across this error? This does not come up on all PC's and I've no idea where it is getting a drive n:/ from! Any info much appreciated.

Part and Inventory Search

Back
Top