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. jaylrob

    Screen Scrape Dynamic Content

    Thanks.
  2. jaylrob

    Screen Scrape Dynamic Content

    The asp file has a conditional which grabs database content. Even though that database content is displayed on screen, it is not captured through the WebRequest. Dim webRequest__1 As System.Net.WebRequest = System.Net.WebRequest.Create(temp) where temp is the url. Does WebRequest finish...
  3. jaylrob

    Screen Scrape Dynamic Content

    I have a screen scraping .aspx file that works perfectly with plain HTML pages. However, if a page contains dynamic content (from an asp page), the dynamic content is not captured. I am using WebRequest and StreamReader to capture the html. Any direction appreciated.
  4. jaylrob

    Merge over Different Schemas

    Thanks. Interesting results. In SQLPlus, if logging in as UserA, all DESCRIBE returns results for all tables. If logging in under the owner of the procedure, I am not able to DESCRIBE the view (which is in the other schema).
  5. jaylrob

    Merge over Different Schemas

    ProcedureA and TableA are located in SchemaA. ProcedureA performs a merge between View B of SchemaB and TableA. ProcedureA is giving a ORA-00942(table or view does not exist) for the following line ... USING (SELECT * FROM B.VIEWB) D Code excerpt --------------------- MERGE INTO A.TableA C...

Part and Inventory Search

Back
Top