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 dencom 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 oaklanders

  1. oaklanders

    Varchar2 size issues in OEM

    I keep running into space issues when creating and/or modifying field varchar2 size in OEM for my Oracle 9i Schema. If I lower one field size then I can increase another field size etc...It seems like my Schema has a limit on total sizes of all my varchar2 fields. Is the space or limit due to...
  2. oaklanders

    Call another page in PHP

    Thanks, Where is the php.ini file located and what is the edit I need to make?
  3. oaklanders

    Call another page in PHP

    Please advise how I can call ASP using PHP? <html> <body> here is several paragraphs of information that changes alot and is stored in ASP......... Anyway to call the ASP so I dont have to manually change my information everytime it is changed?
  4. oaklanders

    Hardest to learn?

    For working on web pages and HTML what is the hardest Server side language to learn?
  5. oaklanders

    Cold Fusion power

    I have many Cold Fusion MX 7 web apps that run great. Most are small and medium size web apps that work great with Oracle and MySQL. I dont know how much we pay for the CF license for our Windows server, but I hear that people want to eliminate CF and use free PHP. It seems CF saves money in...
  6. oaklanders

    Request object in class

    How do I fetch a request value in a Java class? Here is my attempt but it has request object error: public class First { private HttpServletRequest request; private String lastname; public First() { lastname= request.getParameter("lastname"); } public...
  7. oaklanders

    JRE and JDK

    What is the difference between JRE and JDK? JDK is for compiling Java Classes and JRE is for running Java programs? Please advise.
  8. oaklanders

    Listener Port number

    I have local development Oracle 9i database in my Windows XP. I see it uses TNS Listener port 1521. For some reason it must be using port 8080 also or in the background because it seems to not let my web container (Apache Tomcat which uses Port 8080) work when it (TNS Listener) is turned on...
  9. oaklanders

    SSI call in PHP

    I need to do an ssi include in my PHP web page located on a Unix web server, but cant seem to get it to work. <!--#include virtual="http://anotherServer/thepage.asp" --> Please advise how I can use SSI to fetch a file in another server that is located on a Windows Web server.
  10. oaklanders

    Combine field names in query

    Sorry my error on examples: select firstname || ' ' || secondname as fullname from myTable where fullname like '%Jo%' select firstname || ' ' || secondname from myTable where firstname || ' ' || secondname like '%Jo%'
  11. oaklanders

    Combine field names in query

    In my Oracle 9i I tried this and it gave me back an error saying fullname is invalid. select firstname || ' ' || secondname as fullname where fullname like '%Jo%' This works: select firstname || ' ' || secondname where firstname || ' ' || secondname like '%Jo%' Please advise how I can get it...
  12. oaklanders

    Combine Query

    Thanks, this database is already up and running and I cant change it or touch it unfortunately. I assume I will have to keep the query I have?
  13. oaklanders

    Combine Query

    In my Access 2003 I have this setup: TableOne pocOne pocTwo 2 3 2 4 1 2 TableTwo TableTwoId Name 1 Jones 2 Smith 3 Edwards 4 Camden I currently have this query where I need to find all the records that match the...

Part and Inventory Search

Back
Top