Database Dropdown Population - Newbie, please help

Hi,
I am having problems populating a dropdown list in a jsp page with
mulitple entries from a database. Can anyone please help me with the
code or point me in the right direction. Im am using the oreily custom
tags. The page is as follows.
<%@ page language="java" contentType="text/html" %>
<%@ page import="java.util.*" %>
<%@ page import="com.ora.jsp.util.*" %>
<%@ taglib uri="/orataglib" prefix="ora" %>
<HTML>
<BODY>
<ora:sqlQuery id="sqlAdminDropdown" dataSource="AileenDB"
scope="session">
SELECT AdminName From Aministrator
</ora:sqlQuery>
<TABLE>
<TR>
<TD>
** Need to put the dropdown populated with ALL the
AdminName here **
</TD>
</TR>
</TABLE>
</BODY>
</HTML>
I have tried things like the following but dont have a clue:
<html:select name="session">
<html:optionsCollection name="sqlAdminDropdown"
property="sqlAdminDropdown" labelProperty="AdminName"/>
</html:select>

Hi,
I am having problems populating a dropdown list in a jsp page with
mulitple entries from a database. Can anyone please help me with the
code or point me in the right direction. Im am using the oreily custom
tags. The page is as follows.
<%@ page language="java" contentType="text/html" %>
<%@ page import="java.util.*" %>
<%@ page import="com.ora.jsp.util.*" %>
<%@ taglib uri="/orataglib" prefix="ora" %>
<HTML>
<BODY>
<ora:sqlQuery id="sqlAdminDropdown" dataSource="AileenDB"
scope="session">
SELECT AdminName From Aministrator
</ora:sqlQuery>
<TABLE>
<TR>
<TD>
** Need to put the dropdown populated with ALL the
AdminName here **
</TD>
</TR>
</TABLE>
</BODY>
</HTML>
I have tried things like the following but dont have a clue:
<html:select name="session">
<html:optionsCollection name="sqlAdminDropdown"
property="sqlAdminDropdown" labelProperty="AdminName"/>
</html:select>

Similar Messages

  • How to acess Database in I18N? Please help.

    How to acess Database in I18N? Please help.

    I have tried to overide the getContents() method of ListResourceBundle class but it returning an error at run time saying null Pointer exception.
    Here are the 2 codes resp.
    import java.util.*;
    public class Test1
         static String string ;
         public static void main(String args[])
    Locale locale = Locale.ENGLISH;
    ResourceBundle myResources =
    ResourceBundle.getBundle("MyResources", locale);
    string = myResources.getString("HelpKey");
    System.out.println(string);
    import java.util.*;
    import java.sql.*;
    public class MyResources extends ListResourceBundle
         static String[][] s3= null;
    String s6= null;
         String s7= null;
    public Object[][] getContents()
    Object[][] obj= (Object[][])dataBase();
              for(int i= 0; i< obj.length;++i){
                   for(int j = 0;j<obj.length;++j){
                        System.out.println("GGGGGGGG obj["+i+"]["+j+"]"+obj[i][j]);
              //s6=(String)obj[0][0];
         //     s6= obj[0][0].toString();
              //s7=obj[1][0].toString();
    Object[][] contents = { {s6},{s7}};
         return contents;
         private static String[][] dataBase()
         {           try
                   Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                   Connection con=DriverManager.getConnection("jdbc:odbc:DSN");
                   PreparedStatement stat= con.prepareStatement("Select Value,Key from Table1 where Key= ?");
                   String s1= "HelpKey";
                   stat.setString(1,s1);
                   ResultSet rs= stat.executeQuery();
                   while(rs.next())
                        String s2= (String)rs.getString("Key");
                        String s4= (String)rs.getString("Value");
                        String[][] s3 ={{s2},{s4}};
              catch(Exception e)
              e.printStackTrace();
         return s3;

  • I have business catalyst website imported in Dreamweaver. But I am unable to find or use database for it. Please help me into this

    I have business catalyst website imported in Dreamweaver. But I am unable to find or use database for it. Please help me into this

    You might find better help here: Dreamweaver & Business Catalyst
    Additional Info: Dreamweaver Help | Dreamweaver-Business Catalyst integration

  • Connecting to a database on another machine, please help!!!!!!

    Hi there,
    I am new to oracle and at the minute I am using Oracle 9i. I have set up a database on one machine (PC2) and would like to create an odbc from another machine (PC1) to connect to this database. I have set up a listener for (PC1) the using oracle net manager on PC2. what I want to know is: is there anything else I need to do on the PC2 end???? Also, what needs to be done on the PC1 end??? please help!!!

    If everything is setup and working properly on the Server PC2, you can just test the ODBC from PC1 (assum you already have an Oracle ODBC drive).

  • Migration Oracle 9iR2 - Oracle Database 10g Express Edition, please, help

    Good day!
    Now I study examples from tutorial book "Oracle 9iR2 Data Warehousing"
    (translated to Russian) written by Lilian Hobbs, Susan Hilson, Shilpa Lawande. However my Oracle is "Oracle Database 10g Express Edition" and ( as I thought ) for this reason I can't perform these examples.
    Please, help me, if it no hard.
    First example founded on using "Oracle Database Configuration Assistant"
    and "Oracle Enterprise Manager Console". However, I not found them at
    "Oracle Database 10g Express Edition".
    Now I use only "Oracle Application Express" ( and SQL ). Please, tell me,
    if "Application Express" has enough functionality with comparision to
    "Oracle Database Configuration Assistant" and "Oracle Enterprise Manager Console"
    and how I need to do ? (It must, because 10 > 9)
    Second example founded on using SQL. First 80% SQL-commanfs of this executed succesfully. But command "CREATE TABLE easydw.purchases" has error message
    "PARTITIONing is not available." Really, in "2 Day Developer Guide"
    (SQL Reserved Words ) PARTITION is not exist.
    Can I CREATE TABLE easydw.purchases by "Oracle Database 10g Express Edition"
    (with PARTITIONing by other means of SQL )?
    There is full text of this SQL-Command:
    CREATE TABLE easydw.purchases
    (product_id varchar2(8)
    constraint not_null_product_id NOT NULL
    constraint fk_product_id
    REFERENCES product(product_id),
    time_key date
    constraint not_null_time NOT NULL
    constraint fk_time
    REFERENCES time(time_key),
    customer_id varchar2(10)
    constraint not_null_customer_id NOT NULL
    constraint fk_customer_id
    REFERENCES customer(customer_id),
    purchase_date date,
    purchase_time number(4,0),
    purchase_price number(6,2),
    shipping_charge number (5,2),
    today_special_offer varchar2(1)
    constraint special_offer
    CHECK (today_special_offer IN ('Y','N')) )
    PARTITION by RANGE (time_key )
    partition purchases_jan2002
    values less than (TO_DATE('01-02-2002', 'DD-MM-YYYY'))
    pctfree 0 pctused 99
    storage (initial 64k next 16k pctincrease 0)
    tablespace purchases_jan2002,
    partition purchases_feb2002
    values less than (TO_DATE('01-03-2002', 'DD-MM-YYYY'))
    pctfree 0 pctused 99
    storage (initial 64k next 16k pctincrease 0)
    tablespace purchases_feb2002,
    partition purchases_mar2002
    values less than (TO_DATE('01-04-2002', 'DD-MM-YYYY'))
    pctfree 0 pctused 99
    storage (initial 64k next 16k pctincrease 0)
    tablespace purchasee_mar2002 );
    Naturally, I also shall continue try find solution.
    Winni.

    Winni,
    Partitioning is only available with Oracle Enterprise Edition.
    Here is a list of features by edition:
    http://www.oracle.com/database/product_editions.html
    DBCA is not needed with Express edition because you can only have one XE database per server, and all options are pre-configured.
    Enterprise Manager Console is not included with XE - only with the other editions.
    You can get most of the functionality through SQL, Application Express and SQL Developer.

  • Jsp database access using odbc - please help

    Hi friends,
    I�m trying a very simple database access program in jsp data base access using odbc. Odbc has to be used because thin driver or other drivers may not be available in every system of our college and as you know it's not that easy to make changes to those systems. My problem is so simple. I always get an exception in my program.
    My jsp content is as simple as:
    <%@ page import="java.lang.*,java.sql.*,java.io.*,registerbean" %>
    <jsp:useBean id="db" class="registerbean" scope="session"/>
    <%
    String str="insert into reg values('" + db.getName() + "','" + db.getUname() + "','" + db.getPass() + "'," + db.getAge() + ",'" + db.getSex() + "','" + db.getAdd() + "','" + db.getUgcourse() + "','" + db.getUgqual() + "'," + db.getPer() + ",'" + db.getIadd() + "')";
    try
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    Connection con=DriverManager.getConnection("jdbc:odbc:yogaesh","scott","tiger");
    Statement stmt=con.createStatement();
    stmt.executeUpdate(str);
    }catch(Exception e1){out.println(str);};
    %>
    the table reg has the structure:
    Name Null? Type
    CNAME VARCHAR2(20)
    UNAME VARCHAR2(20)
    CPSWD VARCHAR2(20)
    CONFPASS VARCHAR2(20)
    CAGE NUMBER
    CSEX VARCHAR2(5)
    CADD VARCHAR2(100)
    COURSE NUMBER
    CQUAL VARCHAR2(10)
    CPER NUMBER
    IADD VARCHAR2(100)
    The registerbean.java file is as below: (This seems to work fine because I tried printing the values using <%= %> tag and it worked out fine and moreover the query string is intact.)
    import java.io.*;
    import java.util.*;
    import java.lang.*;
    public class registerbean
    private String name,uname,pass,cpass,age,sex,add,ugcourse,ugqual,per,iadd,otherugqual,ccode;
    public void setName(String a)
    name=a;
    public void setUname(String a)
    uname=a;
    public void setPass(String a)
    pass=a;
    public void setCpass(String a)
    cpass=a;
    public void setAge(String a)
    age=a;
    public void setSex(String a)
    sex=a;
    public void setAdd(String a)
    add=a;
    public void setOtherugqual(String a)
    otherugqual=a;
    public void setCcode(String a)
    ccode=a;
    public void setUgcourse(String a)
    ugcourse=a;
    public void setUgqual(String a)
    ugqual=a;
    public void setPer(String a)
    per=a;
    public void setIadd(String a)
    iadd=a;
    public String getName()
    return(name);
    public String getUname()
    return(uname);
    public String getPass()
    return(pass);
    public String getCpass()
    return(cpass);
    public String getAge()
    return(age);
    public String getCcode()
    return(ccode);
    public String getSex()
    return(sex);
    public String getAdd()
    return(add);
    public String getUgcourse()
    return(ugcourse);
    public String getUgqual()
    return(ugqual);
    public String getPer()
    return(per);
    public String getIadd()
    return(iadd);
    public String getOtherugqual()
    return(otherugqual);
    I initially thought the problem was with str but then str seems to be perfect and I get a string of the form �insert into reg values('c','c','c',98,'Male','c','B.Tech, Applied Artificial Neural Networks','HSC',9898,'h')� which I verified through a javascript debugger. The session scope used is to get values through the db bean from another jsp file. The problem is in the executeUpdate() line of this code. I even tried changing the updation table, but in vain. What could be done to rectify this? Please help me out and please do remember that I have no option but to use odbc.
    Thanks in advance.
    R. Yogaesh.

    I didn't verify the type of exception and i'm now going to do that, but then when the string is as perfect as needed, what is the need for a prepared statement? What is the basic difference between the two? And basically what is the problem with this piece of code which creates an exception? Please reply as soon as possible.
    Thankyou very much.
    R. Yogaesh.

  • How is the IDOC CRMXIF_ORDER_SAVE_M getting populated? Please help!

    Hi All,
    I am trying to troubleshoot an issue in the idoc CRMXIF_ORDER_SAVE_M.
    Segment name is E101CRMXIF_APPOINTMENT_XT under E101CRMXIF_BUSTRANS.
    The values in this node are as below:
    It should actually be populating,
    APPL_SNAME : CRMXIF_APPOINTMENT
    APPT_TYPE : EXPIRYDATE
    TIMESTAMP_FROM : 20110308080000
    TIMESTAMP_TO : 20110308080000
    RULE_NAME : ZDDW_DEF
    DURATION : 0
    OBJECT_TASK : I
    But some times it gets populated with below values:
    APPL_SNAME : CRMXIF_APPOINTMENT
    APPT_TYPE : APPROVEDATE
    TIMESTAMP_FROM : 20101108080000
    TIMESTAMP_TO : 20101108080000
    RULE_NAME : TODAY
    DURATION : 0
    OBJECT_TASK : I
    Why and how are these values (especially APPT_TYPE and RULE_NAME) getting populated in the IDOC?
    Please help.
    Thanks
    Gopal

    From the BIAPPS documentation: ETL_PROC_WID This column is the unique identifier for the specific ETL process used to create or update this data.
    Given this description the value should be unique for every execution of an ODI integration process. If you want to see the logic behind the variable, either navigate to the ODI Console or ODI Studio connect to the BIApps ODI repository and take a look at the variable setup. 

  • Just upgraded to SL, Can't get imail to work.? (newbie) Please help!!

    I keep getting this message. Can someone please help me out. I am totally clueless!!
    *ERROR MESSAGE:*
    _"You can't use this version of the application Mail with this version of Mac OS X.You have Mail 3.6."_

    It works now!
    Here is what I did...
    In spotlight I typed "mail", I opened up a "message", and it opened. I looked on my desktop and there was an "iMail" icon that was not there before. I was then able to access the mail normally as i would with Leopard. I deleted the old shortcut on my desktop and placed the new icon in the lower toolbar.
    Worked as good as new..

  • Jsp newbie, please help about @include

    I am new to JSP.
    I have two jsp files, say , jsp1 and jsp2.
    JSP2 is perfectly working. I want to display the result of jsp2 with the result of jsp1.
    But I additionally want to supply a value from jsp1 to a variable in jsp2 before calling jsp2.
    The result of jsp2 depends on the value supplied.
    I couldn't figure out how to do this. A simple @include directive like
    <%@ include file="jsp2.jsp" %> doesn't seem to be suitable here.
    What options are available here? Please help.
    Thank you.

    Thank you friends for the suggestion. I have yet to try your suggestions.
    Before that I came across another problem. Would someone help please?
    Why the jsp fails when I include the same JSP page twice in another jsp page?
    Of the following two jsp files, the upper one is OK, but the lower one complains that it cannot compile (org.apache.jasper.JasperException).
    test1.jsp:
    <html><head><title></title></head>
    <body>
    <table>
    <tr><td><%@ include file="single.jsp" %></td></tr>
    </table>
    </body>
    </html>
    test2.jsp:
    <html><head><title></title></head>
    <body>
    <table>
    <tr>
    <td><%@ include file="single.jsp" %></td>
    <td><%@ include file="single.jsp" %></td>
    </tr>
    </table>
    </body>
    </html>
    I want to populate the cells of an HTML table with the results from the same jsp file, by supplying different values to a variable in the jsp file so that its results will be different for each cell. Am I being to foolish here?
    Thanks.

  • Quiz Reporting - No results are populated! Please HELP

    Greetings,
    I am currently developing a quiz for internal use. Something
    very simple. I publish in flash, I have only 7 (short answer)
    questions. However when I complete the questionaire, my email
    client launches with the proper subject line, but that's it. I have
    used multiple email clients (Outlook, OutlookExpress, Thunderbird)
    with the lowest security settings available. I have also configured
    my gloabl flash settings to allow everything. Even with all this
    done I still get nothing. I've researched and found that Adobe
    Captivate2 is compatible with my version of IE, although I haven't
    had success with Firefox either. I have used 3 different computers
    on my company's network, and 2 laptops that aren't even on it, in
    addition my computer at the house.
    Below are my settings I have been using (per Adobe's
    instructions)
    Reporting - enabled (email, with my email address filled in)
    Report status as defined by report data
    Report quiz results only
    Report Interactions and score
    Please help! Captivate is a great utility that I love
    utilizing, but I feel this is a huge deficiency per my needs.
    Adobe's Tech Support could not help. I emailed them my project and
    they said it worked just fine on their computer. Which I find hard
    to believe given the 6+ computers I have tried to use this on. The
    final suggestion they had was to create an entirly new project from
    scratch with Captivate2 (originally was using 1), but I have seen
    no difference.
    Thank You

    Hi chazzzmd and welcome to our community
    Unfortunately, E-Mail is pretty weak and convoluted. Results
    vary widely and are largely undesirable. But even so, are you able
    to post the .CP file or resulting movie somewhere where the rest of
    us can see it? Maybe one of us will see something that will help.
    I've seen many here use something called
    YouSendIt to do this.
    Cheers... Rick

  • NEWBIE PLEASE HELP..!! Problem Opening a MIDI file

    Hi all.
    Does anyone have any advice on this strange problem..??? On the Logic Pro 8 Manual it says that : +"When you open a MIDI file in Logic Pro 8, software instrument tracks are automatically created for each MIDI track"+
    My problem is that when I open a MIDI file, (Standard MIDI file) some tracks get assigned to external MIDI instruments, others get assigned to Software instruments. I can't figure out how this might happen.
    I really want to use the software instruments for each MIDI track, not the Quicktime Synthesizer...
    PLEASE HELP ME FIX THIS...!!!!
    Thanks

    Well, the thing is that I only want Logic to automatically create the software instruments tracks (EXS, EXS24, Garageband sounds, etc) every time I open a MIDI file
    As a matter of fact I have a Macbook with 10.4 OSX with Logic Pro 8 and this one DOES what it says in the manual (creating the W/W instrument tracks) I just open a MIDI file and the program does all the rest..it assigns a SW instrument for each track... However, I can't do that with my iMac....
    This problem is really driving me insane ....I'm a switcher from Cakewalk SONAR and I really want to use Logic....Please Help..!!

  • SOS .......Newbe Please help........

    Is there a very simple step by step complete instructions out there
    to completely update my Zenworks Imaging Lenux kernel drivers etc...
    to the most currant of system configs these days. My background was
    all Microsoft till now. At the moment I am forced to use ZFD4 and just
    hoping I can find the instructions for the latest drivers and updated kernel to support the new Dell GX series. Not forced but would like to find the solution using only my windows XP workstation. Running Netware 6 and ZFD4 for PXE Imaging Works great with legacy systems. Please help.....

    s23wins wrote:
    >
    > Is there a very simple step by step complete instructions out there
    > to completely update my Zenworks Imaging Lenux kernel drivers etc...
    > to the most currant of system configs these days. My background was
    > all Microsoft till now. At the moment I am forced to use ZFD4 and just
    > hoping I can find the instructions for the latest drivers and updated
    > kernel to support the new Dell GX series. Not forced but would like to
    > find the solution using only my windows XP workstation. Running Netware
    > 6 and ZFD4 for PXE Imaging Works great with legacy systems. Please
    > help.....
    Easiest first step is to apply the latest updates to ZFD4, see if that
    helps.
    then for manually updating drivers, this looks promising,
    http://support.novell.com/docs/Tids/.../10070123.html
    -sk

  • Database Linking.. PLEASE HELP!!!!!

    Hi. I am in serious need for help. I want to link my Application server's DB (IASDB_SRVORC2.ACME.BIZ) to my database server's DB (AQ1.SRVORC1.ACME.BIZ). These names are how they show up in the tnsnames.ora file. My main reason is to be able to create a DB Provider using a schema on the DB server's DB and to share users and data. Please take it step by step because I am STUCK on this! Let me know if you need any other information. THANK YOU VERY MUCH!!

    I checked the tnsnames.ora file on both DB Servers I am trying to connect to. This is exactly what is says in the iasdb database (AS server) tnsnames file....
    INST1_HTTP.ACME.BIZ =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = srvorc2.acme.biz)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = SHARED)
    (SERVICE_NAME = MODOSE)
    (PRESENTATION = http://HRService)
    IASDB.ACME.BIZ =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = srvorc2.acme.biz)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = iasdb.srvorc2.acme.biz)
    EXTPROC_CONNECTION_DATA.ACME.BIZ =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC) (KEY = ExtProc))
    (CONNECT_DATA =
    (SID = PLSExtProc)
    (PRESENTATION = RO)
    This is EXACTLY what is says on the AQ1 database (database server)
    ACME.ACME.BIZ =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = SRVORC1.acme.biz)(PORT = 1521))
    (CONNECT_DATA =
    (SID = aq1)
    (SERVER = DEDICATED)
    (SERVICE_NAME = acme.acme.biz)
    INST1_HTTP.ACME.BIZ =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = srvorc2.acme.biz)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = SHARED)
    (SERVICE_NAME = MODOSE)
    (PRESENTATION = http://HRService)
    EXTPROC_CONNECTION_DATA.ACME.BIZ =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC) (KEY = ExtProc))
    (CONNECT_DATA =
    (SID = PLSExtProc)
    (PRESENTATION = RO)
    And this is what I have in my local machine(client) file
    IASDB.ACME.BIZ =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = srvorc2.ACME.biz)(PORT = 1521))
    (CONNECT_DATA =
    (SID = iasdb)
    (SERVICE_NAME = iasdb.srvorc2.ACME.biz)
    ACME.ACME.BIZ =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = SRVORC1.ACME.biz)(PORT = 1521))
    (CONNECT_DATA =
    (SID = aq1)
    (SERVER = DEDICATED)
    (SERVICE_NAME = ACME.ACME.biz)
    I really appreciate anyone taking the time to read throught this and help me out. Thanks again!

  • My Aperture 3 library menu shows me that some photos, which are high resolution professional pictures, are less than One Mb file size. Are the full size masters held elsewhere, and if so how do I get to them ? You've guessed I,m a newbie - please help.

    In Aperture 3 and using File>Get Info, I'm told that many photos, which are 7+ Mb's are only One Mb or less. Are the full-sized masters held elsewhere, and if so how can I get to them. You've guessed I'm a newbie - just 2 months with Apple and I'm very confused - any advice would be gratefully received.

    You should probably have this thread moved to the Aperture Discussion group and you’ll find lots of useful tips in the threads there:
    https://discussions.apple.com/community/professional_applications/aperture
    Are you looking at these sizes within Aperture using the metadata view or inspecting them outside using the Finder and Show Package Contents?
    I am wondering how you are importing the pictures from your camera?  When you import from your camera, the right side of your display window will have a lot of options that you can select to grab your images from the camera. 
    Does your camera shoot RAW+JPEG?  If so, you may not be importing them correctly and only picking up the JPEGS.  You can import them so they stay together or separate them.  The master images are all at the Project Level whereas the views you see in Albums for example are aliases that point back to your Project.
    Here’s a good Aperture web site (I have no financial or other interest in this site) to help you using Aperture:
    http://aperture.maccreate.com/
    This article talks about RAW and JPEG images:
    http://aperture.maccreate.com/2011/05/24/matching-raw-files-to-jpeg-pairs-in-ape rture-3/

  • Running OEM on a UNIX Box and more (Newbie, Please Help)

    Hello,
    This may be quite very simple for many of you. I am used to a windows environment and now have been dropped in to a Unix/Linux world. I am looking for some help in regard to:
    1.) How can I start up Oracle Enterprise Manager for 10g through Unix?
    2.) Can I use the something like the DB Homepage (Oracle 10g Personal Edition)?
    3.) What tools are recommended, I started up SQL Developer, it seems to work, but are there any better that do similar functions?
    I appreciate any help that can be offered. Thanks.

    Thank you so much for your help.
    I was able to get the Enterprise Manager to load up
    on a browser. But I got an error:
    Error
    Io exception: Got minus one from a read call
    As I tried to log in. Not sure what that mean, could
    it be a privalege issue?
    When I tired to emctl start dbconsole, i got a
    Permission Denied error... could that also be a
    privilege issue on the DB server or the Box its on?You need to do all the above while logged in as the Oracle software owner. i.e, the user that installed Oracle Server and the Enterprise Manager. This user is usually oracle if you used the default standards.
    And my last question to sum up my day of
    frustration.. I am trying to Link the Oracle Tables
    in Microsoft Access 2003. No luck using the ODBC
    provided by Mircosoft, I get an error saying:
    ODBC-call failed. ORA-12514: TNS: listener does not
    currently know of service reuested in connect
    descriptor. You define a TNS entry in $ORACLE_HOME/network/admin/tnsnames.ora of your Oracle Client (this case Windows), then the SERVICE_NAME parameter must match the dbname.db_domain of your database. Then the TNS Servece Name you enter in the ODBC Driver Configuration must match the Net Service name in the tnsnames.ora.
    Here is my example tnsnams.ora entry:
    My Database Name (and SID) is TESTDB. My servername is TESTSERVER. I connect to TESTDOMAIN.COM.NG My Listener is on port 1521 (the default). Assuming I have not changed my db_domain after a default install, it will be TESTSERVER.TESTDOMAIN.COM.NG (you can find this in initTESTDB.ora or spfileTESTDB.ora of your database)
    TESTDB
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = TESTSERVER.TESTDOMAIN.COM.NG)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = TESTDB.TESTSERVER.TESTDOMAIN.COM.NG)
    In the above example, TESTDB should be entered or selected in TNS Service Name in ODBC Driver Configuration.
    I am sorry for asking so many question, i tried my
    best to refrain from it, but after a day of trying to
    figure it out and downloading all kinds of things to
    "fix" it, i give up. Any help would be greatly
    appreciated. Thanks.My advice? Read the Enterprise Manager Documentation of your Operating System. You will find or download every Oracle Product Documentation at http://www.oracle.com/technology/documentation/index.html including that of Enterprise Manager http://download-uk.oracle.com/docs/cd/B16240_01/doc/nav/portal_booklist.htm. Once you have familiarised yourself with the basics (at least), there will be no need to hack around the problems. you will fix it :-)

Maybe you are looking for

  • After a memory upgrade programme no longer  working

    Mac Mini as server running OS 10.5.8. I just put in 1 GB of new memory in my server (Mac Mini) so now it has two modules one 256 and one 1GB. Nothing else changed. Since doing that Ovolab Phlink (is my 'answering machine' programme) stopped working.

  • RMI Trouble - UnmarshalException

    I had several classes thata had been working great under RMI until I made a smalla change I change the package path of my classes adding a parent package and adding a level in the directory path (from D:\Des\MicroApl to D:\Des\MicroAplsrc), so my dir

  • Exporting Frame content to Word?

    Hi, I am working on manuals that have been done in both Frame 7.2 and Word 2003 and am hoping to migrate to a newer version of Frame some day. Right now I'm trying to update a few Word-based manuals with some content from Frame docs but it's slow and

  • Sound Transform not working

    Hey guys, I'm getting this silly little problem. I'm making a sound play and I'm trying to change it's volume. I've done this many times before and got it to work, but in this script for some reason it's not working. The script looks like this : pack

  • Sapscript printing

    I want to print a statement usin sapscript but its not printing. when i go to my own spool requests to view the log its giving an error message saying "Output device not available". May you please help