Where is the database object administration GUI in Oracle XE 11g?

Please read my whole question, because I'm sure people will misunderstand, and tell me to load http://localhost:8080/apex in my browser.  I know that is there.
I am a previous user of Oracle XE 10g, but I just installed Oracle Express 11g. I only want to use it to get a local instance of Oracle database. The 10g APEX UI provided an easy way to administer database objects (users, schemas, and the like), but it appears the 11g APEX UI is some kind of weird application development environment that I don't want to use. It doesn't even seem aware of the schemas I created in the database using SQL Plus.
So, where is the regular admin GUI for Oracle database objects like users/schemas (i.e. something that will list the schemas that exist in the database, and allow me to add or delete them)? Or does 11g force you to do that using SQL (in which case, I'm going to go back to 10g).
Thanks,
Jeff

No, SQL workshop is not what I want.
Basically, I don't want to deal with this concept of a "workspace" at all. It's useless to me and just gets in my way. All I want is a a UI where I can view a list of the schemas that exist in the database, and manipulate them easily.
I have TOAD, so I could use that, but I liked the old 10g administration GUI, since it provided the exact functionality at the exact level of complexity that I needed.

Similar Messages

  • What is the Table/View name for getting the Database Object Dependencies

    I am running the Database Object Dependencies report to get the reference of Database Object and their respective Application Component.
    Applications xxxx -> Application Reports -> Shared Components -> Database Object Dependencies -> Compute Dependencies
    I want to develop a report for the same purpose, Just want to know what is the APEX Tables / Views they are using to run this report, so that I can use the same Tables to create my own report.
    Thanks,
    Deepak

    Hi Andy,
    when I am using the following query...I am not getting any result...
    select name, type, owner
    from all_dependencies
    where referenced_owner = 'APEX_030200'
    and referenced_name = 'WWV_FLOW_PATCHES'
    AND OWNER= 'XXXXXXX' --- (addeed this to the where clause)
    I modified the query.....I am getting the result.....
    select name, type, owner
    from all_dependencies
    AND OWNER= 'XXXXXXX'
    - But I am not getting which database object(table/view) is using which Application Page/Component like we have in Database Object Dependencies.
    - Also what is this REFERENCE OWNER & REFERENCE_NAME ----
    referenced_owner = 'APEX_030200'
    and referenced_name = 'WWV_FLOW_PATCHES'
    I am little bit confused, Can you pl expalin me in details......
    Thanks,
    Deepak

  • Where is the database panel in Dreamweaver CC?  Was this feature removed?

    Where is the database panel in Dreamweaver CC?  Was this feature removed?
    Mike

    At the link I posted above.
    There is a single extension to restore these features. Extension is available at:
    Vista/Windows 7: C:\Program Files (x86)\Adobe\Adobe Dreamweaver CC\Configuration\DisabledFeatures
    Mac OS X: /Applications/Adobe Dreamweaver CC/Configuration/DisabledFeatures
    To install, follow instructions in the video
    http://www.youtube.com/watch?v=cB2vmNfcq7A
    Nancy O.

  • Physical file of the "Database" object keep growing

    Hello,
    My Application is using BDB. Version 4.3.29.
    We are using the Database object for saving our byte array data to BDB(see the code below)
    The written data is initialized by: Byte[] Data = new byte[size].
    And we always use the same key for the insert operation. By the BDB API it should overwrite the existing entry, correct me if I’m wrong)
    The data size may vary, I.e. it can grow, or decrease.
    After monitoring the physical file that sits on dist, we have noticed that the physical file only grows, but never decrease its size. Even when the written data is of a 0 length.
    Please explain the issue. What are we doing wrong? Or what additional parameters should be used in order for the phisical file to change its size.i.e. decrease it.
    Thank you in advance.
    Shira Faigenbaum
    Opening the BDB:
    DataBase m_dataBase = m_DBEnv().openDatabase(transaction, tablePath + File.separator + m_name, null, m_DatabaseConfig);
    The code that we have, for the PUT operation:
    DatabaseEntry keyDbt = new DatabaseEntry(new byte[4]);
    keyDbt.setSize(4);
    keyDbt.setUserBuffer(4, true);
    keyDbt.setRecordNumber(DATA_KEY);
    DatabaseEntry dataDbt = new DatabaseEntry(data);
    dataDbt.setSize(data.length);
    dataDbt.setUserBuffer(length, true);
    synchronized (transaction)
    m_dataBase.put(transaction.getTransaction(), keyDbt, dataDbt);
    }

    Hi,
    There is a bit a lot of code, but here is the program.
    thanks
    Shira
    public class BDBsizeNotReducingExxample
         Environment m_dbEnv;
         private Database m_dataBase = null;
         private byte[] m_serializationBuffer = new byte[256];
         private Object m_data = null;
         public static void main(String[] args)
              BDBsizeNotReducingExxample DbsizeNotReducingExxample = new BDBsizeNotReducingExxample();
              DbsizeNotReducingExxample.opendbEnv();
              DbsizeNotReducingExxample.openDB();
              DbsizeNotReducingExxample.saveData();
         private void opendbEnv()
              try
                   EnvironmentConfig ec = new EnvironmentConfig();
                   ec.setCacheSize(16 * 1024 * 1024);
    ec.setErrorStream(new LogOutputStream());
    ec.setVerboseDeadlock(true);
                   ec.setVerboseWaitsFor(true);           
    ec.setVerboseRecovery(true);      
              ec.setMaxLockers(1024);
                   ec.setMaxLocks(100000);                ec.setMaxLockObjects(100000);               ec.setTxnMaxActive(20);
                   ec.setLogRegionSize(600 * 1024);     
    ec.setLockDetectMode(LockDetectMode.DEFAULT);
    ec.setAllowCreate(true);
                   ec.setTransactional(true);
              ec.setRunRecovery(true);          ec.setInitializeCache(true);
                   ec.setInitializeLocking(true);     ec.setInitializeLogging(true);
                   File f = new File("/Application/Persistency");
                   //open the environment try to open data base without fatal recovery
                   try
                        m_dbEnv = new Environment(f, ec);
                   catch (RunRecoveryException dbrre_1)
                        ec.setRunFatalRecovery(true);
                        m_dbEnv = new Environment(f, ec);
                   //archive and checkpoint at gatherer start up
                   CheckpointConfig cpc = new CheckpointConfig();
                   cpc.setForce(true);
                   m_dbEnv.checkpoint(cpc);
              catch (Exception e)
                   PersistencyUtils.handleFatalException(e);
         private class LogOutputStream extends OutputStream
              public void write(int b) throws IOException
                   //some clss just to print the errors
         private void openDB()
              DatabaseEntry keyDbt = new DatabaseEntry(new byte[4]);
         keyDbt.setSize(4);
         keyDbt.setUserBuffer(4, true);
         keyDbt.setRecordNumber(0);
         DatabaseEntry dataDbt = new DatabaseEntry();
         dataDbt.setReuseBuffer(false);
    try
         String tablePath = "/Application/Persistency/";
         DirUtil.mkdirs(new File(tablePath));
         PersistencyUtils.verifyFreeDiskSpace();
    Transaction transaction = m_dbEnv.beginTransaction(null, null);
    //DatabaseConfig use btree
    m_dataBase = m_dbEnv.openDatabase(transaction, tablePath + "/Data", null, PersistencyUtils.getDatabaseConfig());
    if (m_dataBase.get(transaction, keyDbt, dataDbt, null) != OperationStatus.SUCCESS)
         dataDbt = null;
    transaction.commit();
    catch (Exception e)
         PersistencyUtils.handleFatalException(e);
    if (dataDbt != null)
         byte[] data = dataDbt.getData();
         if (data != null)
              m_serializer.deserialize(m_data, data, 0, data.length);
    private void saveData()
    int length = m_serializer.serialize(m_data, m_serializationBuffer, 0);
    //this function changes the size of the m_serializationBuffer, increase and decrease its size!!!
    adjustSerializationBufferToTheRealLength(m_serializationBuffer, length);
    DatabaseEntry keyDbt = new DatabaseEntry(new byte[4]);
    keyDbt.setSize(4);
    keyDbt.setUserBuffer(4, true);
    keyDbt.setRecordNumber(0);
    DatabaseEntry dataDbt = new DatabaseEntry(m_serializationBuffer);
    dataDbt.setSize(length);
    dataDbt.setUserBuffer(length, true);
    synchronized (currentTransaction)
         m_dataBase.put(transaction.getTransaction(), keyDbt, dataDbt);
    }

  • Hi where is the database link previously under windows menu?

    Hi where is the database link previously under windows menu

    Removed feature: Server Behavior, Bindings and Components Panels and Database feature
    There is a single extension to restore these features. Extension is available at:* Vista/Windows 7: C:\Program Files (x86)\Adobe\Adobe Dreamweaver CC\Configuration\DisabledFeatures* Mac OS X: /Applications/Adobe Dreamweaver CC/Configuration/DisabledFeatures
    As seen on http://blogs.adobe.com/dreamweaver/2013/06/a-look-at-the-modernized-dreamweaver-cc.html
    Video instructions on how to install these back available here: http://www.youtube.com/watch?v=cB2vmNfcq7A

  • Unix: where is the J2EE Visual Administration

    Hello,
    In W2K go.bat does the job, where is the J2EE Visual Administration in the UNIX environment? what is the path and the .exe name?
    We are at EP6 sp2, j2ee6.2, HP-UX.
    Regards,
    AAAttar

    Art -
    Marty is correct.  On UNIX, you'll need to have your DISPLAY variable set.  I believe on HP-UX the command is setenv DISPLAY "ip address:0".
    Once this is set, run ./go from the admin directory.
    Regards,
    Kyle

  • Why two different users from same login group not able to access the database object(stored procedure)?

    I have SQL login group as "SC_NT\group_name" in server. There are multiple users using this login group to access database objects. User "A" can able to access db object(stored_procedure_1) from .net application. But when user "B"
    tried to access same db object(stored_procedure_1), its showing like
    Error: The EXECUTE permission was denied on the object 'stored_procedure_1', database 'test',schema 'dbo'. 
    Both the users are using windows authentication for access the objects. Could you suggest me the way to resolve this?
    Venkat

    Thanks for your response
    Erland Sommarskog....
    my stored procedure "stored_procedure_1"
    does not has any granted permissions to execute. But still user A
    able to execute the sp from UI, where user B not able to do it.  If any permission provided for a particular object, then only it will display in the above query whatever u have given.  
    Any other possibilities??
    Venkat G

  • Where does the inactive object reside?

    Hi
    I am new to abap. I want to know when we create a object in the data dictionary, where is it stored?
    I do know that when we activate the object a same replica is created in the database having the syntax valid in the database.
    I just want to know if i have created one object which is not activated where it will be stored?
    Thanks,
    Sarbjeet Singh

    Hi Sarabjeet,
    When a program/objects  is created without saving till that time it is only in application sever and thereafter when are you pressing
    'SAVE' , then only it is stored to the backend database as inactivate version.
    While code changing (modifications) both inactive and active versions are stored in the database.
    When it is inactive(if you are executing it alone ), only you can use it not other system users(Note:  you can't use one inactive versions object in another active objects.)
    Once it is activated, all other users of same client can use your Program/objects.

  • How to find out  Locks on the database objects

    how to find out Locks on the database objects

    The following notes should be helpful:
    Note: 200590.1 - bde_session_locks.sql - Locks for given Session ID
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=200590.1
    Note: 1039273.6 - SCRIPT: VIEWING LOCKS ON OBJECTS HELD BY SPECIFIC USER
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=1039273.6
    You can also search Metalink, there are many notes/scripts published there which would be also helpful.

  • Where is the database connection for a mobile site?

    I have a Flash mobile site that I didn't create, but need to edit. On clicking the submit button it checks that the login & password are in a SQL database. The problem is, I can't find the method that runs a query on the database or where the database is even connected. I've tried searching through the code for words like "SQL", "database", and "connection" without success. I stepped through the code where I find a call to method "super", but then it goes back to the original method and then the user is logged in. Can someone explain where the call to the database is?
    Other things I'd like to know are: Where is the SQL Connection? In the main (non-mobile site), there is a web.config with a line that says
    <add name="TPConnectionString1"  connectionString="DataSource=xxx.xx.xxx.xx,xxxx\sqlexpress;Initial Catalog=TP;Persist Security  Info=True;User ID=xxxxx" providerName="System.Data.SqlClient"/>
    Where (what file: ex. web.config, xyz.as, etc.) would a similar line in the mobile code be?
    What does super(type, bubbles, cancelable) do?
    Here's the method for the submit button: LoginView.mxml
            private function btnclicked():void{  techController.username = txtUsername.text;  techController.password = txtPassword.text;  var evt:TechEvent = new TechEvent(TechEvent.LOGIN_USER);  this.dispatchEvent(evt);  }
    Here's the TechEvent function that is called: TechEvent.as
        public function TechEvent(type: String, bubbles:Boolean=true, cancelable:Boolean=false)  {  super(type, bubbles, cancelable);  }
    Here's the dispatchEvent method: UIComponent.as
    override public function dispatchEvent(event:Event):Boolean  {  if (dispatchEventHook != null)  dispatchEventHook(event, this);    return super.dispatchEvent(event);  }

    You are looking for an event handler for the TechEvent.LOGIN_USER event.
    Coding style looks similar to a SWIZ style framework, in which case, the event handlers could be defined using metadata [EventHandler] or [Mediate] tags, but could just be a plain simple .addEventListener(TectEvent.LOGIN_USER,fn); declaration earlier on.
    Either way, this is what has happened:
    1. User enters uname and password, then clicks button
    2. Button click handler populates the techController with relevant values then dispatches an event to let the world know it has done so
    3. The event handler checks the techController and makes the login call
    4. Some time later, the server will respond and trigger another event that the app can respond to
    G

  • Where in the database should my themes and styles and maps etc... go?

    We had a problem performing an export of the MDSYS schema for backup purposes. When we tried to import our data, after a database corruption thanks to a patch, the themes and styles, and maps that we created did not get put back in user_sdo_themes, maps, styles, etc... the data was never exported.
    Oracle support is saying that these things should not be going in the MDSYS schema, if they do not go in there, then where should they be going? Also how do I map the definitions back to where I should be putting them? We create all of our spatial data in a schema named RESOURCES. Should I be creating tbles such as user_sdo_themes in my RESOURCES Schema?
    thank you!

    The MDSYS user does in fact contain all of that information, but you should not be exporting the mdsys user any more than you export the sys or system users.
    When I export map metadata for a user, and I want to be able to reinsert that data on import, I will do something like the following:
    before exporting, I will create metadata tables
    create table my_maps as select * from user_sdo_maps;
    create table my_themes as select * from user_sdo_themes;
    create table my_styles as select * from user_sdo_styles;
    I'll export those tables with whatever data I am exporting.
    After the import, I'll do something like this:
    insert into user_sdo_styles (select * from my_styles);
    insert into user_sdo_themes (select * from my_themes);
    insert into user_sdo_maps (select * from my_maps);
    When I am sure everything looks copacetic, I will drop the tables I created for export.
    hope this helps.

  • Where is the Database Concepts book?

    I can't find the documentation referenced in the Administrator's Guide(A96521-01) as "Oracle 9i Database Concepts" for release 1 a.k.a. 88856-02. I would really like to get my hands on it.

    Here's the link:
    http://otn.oracle.com/docs/products/oracle9i/doc_library/release2/nav/getting_started.htm
    You might also want to look at:
    Oracle9i Database: Getting Started
    http://otn.oracle.com/docs/products/oracle9i/doc_library/release2/nav/getting_started.htm
    Getting Started with Oracle
    http://otn.oracle.com/products/gswo/getstart.html
    Regards,
    -rh

  • Where is the Database-Explorer View in NWDI CE 7.1

    Hello,
    i tried the download for the nwdi ce 7.1 and i want to learn something about developing java ee5 applications on sap netweaver. for this i worked with the book "Java-Programmierung mit SAP Netweaver" and the document "Developting Java EE 5 Applications from Scratch".
    Working with this documents at some point one should use the Database-Explorer to create Java Entity-Objects. But my Netweaver Developer Studio CE 7.1 does not contain it. As mentioned by the documentation it should be started by Window->Show-View->Other->Data->Datbase Explorer. But even the Entry Data is missing under Window->Show-View->Other.
    Does anybody have an idea why the view is missing??
    My NWD-Studio Version is 7.1 SP03 Pat0000
    Regards

    wrong category

  • Where is the Database Initialization Parameter file (inti.ora ??) located ?

    I have E-Business Suite R12 installed on Windows XP.
    I want to change utl_file_dir path.
    I know that I have to change the Database Initialization Parameter file (inti.ora ??)
    Does anybody know, where is the file located ?
    When I search I am getting two files. (init.ora and init.ora.txt)
    Which file I need to make the changes in ???
    Thanks in advance

    The initialization file for the database is located in the $ORACLE_HOME/dbs directory, and is called init<SID>.ora

  • Ms SqlServer connection: where is the database?

    I'm connecting to MS SQL 2000 with a user that is owner of the database i want to convert into oracle. The connection is OK, but when i connect i cannot see the database and its tables. The same if i connect with user "sa".
    Can anybody help me?

    Hi,
    I'm not sure where the problem is, I think it is more how SQL Server is implemented, whenever we look for tables they always appear under the 'dbo' schema regardless of who created them. All that JDeveloper does is query the Database metadata.
    Regards,
    Lisa

Maybe you are looking for

  • Error When Opening iTunes

      Windows XP SP2  This suddenly started happening and I don't know why. When I open iTunes it says "iTunes has encountered a problem and needs to close." then it closes. No iTunes window pops up or anything, just this error window. It has no relevant

  • Why is the visual editor such a pain?

    When I drag and drop components from the Component Palette to a page in the visual editor, instead of the UI component, I see the component with box outline in the design view of the visual editor. A few others have complained about this problem too.

  • Nokia lumia 1520 network issue(SIM not active) aft...

    Dear Nokia/Microsoft Team, can someone assist me on this issue. I was using my Nokia Lumia 1520 with W8. I got notification to update to W8.1. After update now Sim not getting active. I am unable to change from flight mode. Also I tried to downgrade

  • Audit log select which can be a performance problem (IDM 6.0sp3)

    HI All, we have in our production environment IDM 6.0sp3 with a large number of account and about 3500000 record in waveset.log table. Recently we realized through our dba that constantly idm running continue select on a table of logs, causing an exc

  • Excluding sender mail id in the mail

    Hi, I want to develop and application to send a mail. I can do it but the problem is i want to hide or exclude from address in the mail. I am not setting the from address then it taking the system user name as the sender of the mail. I don't want to