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 SkipVought 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: *

  • Users: oaklanders
  • Order by date
  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...
  14. oaklanders

    Forgot user password

    Thank you.
  15. oaklanders

    Forgot user password

    I have a local Oracle 9i database and forgot the password for my Username. Please advise how I can reset the password? I do have the password for the sys and system logins to this local database.
  16. oaklanders

    Browsers

    Please advise what Browsers I should have my static web page work in? I assume IE, Netscape, Firefox and Mozilla?
  17. oaklanders

    SID, Instance, Database name???

    Thanks for all your time and info! It seems I dont have privileges to confirm the name of the database that my Instance ABC is managing when I try the SQL: select name from v$database;
  18. oaklanders

    SID, Instance, Database name???

    Thanks for all the writing and time you put into this! If I understand you right then I am working on a (turned on) Unix server that has one instance (ABC) running. Not sure if the (turned off) Database name is actually called ABC because I have only been told what the instance (SID) is...

Part and Inventory Search

Back
Top