1. Workspace files: apex_workspace_files
Includes columns for:
file_name - name of file uploaded
file_id - unique identifier
application_id - application number
workspace_name - should always be your workspace
mime_type - e.g. text/plain, image/gif, application/excel
file_size - file size in bytes
created_by - e.g. APEX_PUBLIC_USER
created_on - sysdate
document - blob that contains contents of uploaded file
2. Apex access log: apex_workspace_access_log
Creates log record every time you log into application via Apex standard login page (I think). Must be workspace and Apex-owner schema-specific?
Columns include:
ip_address
seconds_ago - how log ago the access happened - dynamic?
access_date
authentication_result - e.g. AUTH_SUCCESS
custom_status_text - ?
3. Apex summary log: apex_workspace_log_summary
Includes columns:
application_id
page_views
distinct_pages
total_elapsed_time
first_view - date/time
last_view - date/time
period_in_days
4. Application activity log: apex_workspace_activity_log
Logs internal (Apex) as well as pages accessed in your application.
Columns include:
application_id
application_name
application_schema_owner - e.g. STEW_STRYKER
page_id
page_name - e.g. Load Import File - new
ip_address
error_message - e.g. ORA-00904: “ADDRESS_LINE_2_BILLING”: invalid identifier
error_on_component_type - report
error_on_component_name - Review Participants
5. Apex view definitions: apex_dictionary
Lists all views and their columns. The view columns are documented in this table in the Comments column.
To get a list of Apex Views
SELECT DISTINCT apex_view_name FROM apex_dictionary;
6. Installation-specific?
V3 Apex schema: flows_030000
Tuesday, March 31, 2009
Tuesday, December 30, 2008
Creating Oracle Extended RAC on Oracle VM
Click here for details on Oracle Extended RAC on Oracle VM.
Thursday, December 11, 2008
Oracle SQL Developer Data Modeling
Oracle SQL Developer Data Modeling is the latest product offering to join the Oracle Database Tools. SQL Developer Data Modeling offers a full spectrum of data and database modeling tools and utilities, including Entity Relationship modeling, Relational (Database Design), Data Type and Multidimensional modeling, full forward and reverse engineering and code generation. It includes importing from and exporting to a variety of sources and targets, provides a variety of formatting options and validates the models through a predefined set of Design Rules.
SQL Developer Data Modeling can connect to any Oracle Database version 9.2.0.1 and later, and is platform independent. Initially available as a standalone product, with future releases available as an extension to Oracle SQL Developer. The second Early Adopter release is stand alone and file-based only.
Download
SQL Developer Data Modeling can connect to any Oracle Database version 9.2.0.1 and later, and is platform independent. Initially available as a standalone product, with future releases available as an extension to Oracle SQL Developer. The second Early Adopter release is stand alone and file-based only.
Download
Wednesday, November 05, 2008
Apex Examples
Are you looking for Apex examples ?
Packaged Apps
Carl Backstrom's
Denes Kubicek's
Dimitri Gielis's
Mark Lancaster's
Vikas's
Packaged Apps
Carl Backstrom's
Denes Kubicek's
Dimitri Gielis's
Mark Lancaster's
Vikas's
Friday, September 26, 2008
Oracle Locator Express
Oracle Locator Express is a small free utility with which you can switch the default Oracle Home on-the-fly, just like the Oracle Home Selector does.
http://www.dbmotive.com/ole/
http://www.dbmotive.com/ole/
Wednesday, June 04, 2008
You can get ...
You can get OpenSolaris Live CD and Oracle Unbreakable Linux DVD shipped to you free of cost.
Order OpenSolaris
Order Oracle Unbreakable Linux
Order OpenSolaris
Order Oracle Unbreakable Linux
Thursday, April 24, 2008
Developing own program using Oracle XE and APEX
Steve Hall method:
1) Fresh install of Oracle XE to default location on new machine,
2) Run backup.bat script on my development machine (ApEx 3.1, my app etc),
3) Copied these files / folders from the development machine to the new installation :
flash_recovery_area\XE\AUTOBACKUP\*
flash_recovery_area\XE\BACKUPSET\*
product\10.2.0\server\database\SPFILE2INIT.ORA
4) Run the restore.bat script on the target machine.
Voila! ApEx 3.1 and my app on the target machine. It needs more testing and automating but it certainly seems to work 'in the lab'.
Suggestion: You can try the COMPRESS option in backup.
Andre method:
Basically the steps are as follows.
1. Create your schema.
2. Create a workspace using that schema.
3. Create your underlying db objects.
4. Import the application into the workspace.
This is pretty basic and there may be some other steps required to complete the job, such as importing images and workspace users but overall, once you do it once, its not that hard.
1) Fresh install of Oracle XE to default location on new machine,
2) Run backup.bat script on my development machine (ApEx 3.1, my app etc),
3) Copied these files / folders from the development machine to the new installation :
flash_recovery_area\XE\AUTOBACKUP\*
flash_recovery_area\XE\BACKUPSET\*
product\10.2.0\server\database\SPFILE2INIT.ORA
4) Run the restore.bat script on the target machine.
Voila! ApEx 3.1 and my app on the target machine. It needs more testing and automating but it certainly seems to work 'in the lab'.
Suggestion: You can try the COMPRESS option in backup.
Andre method:
Basically the steps are as follows.
1. Create your schema.
2. Create a workspace using that schema.
3. Create your underlying db objects.
4. Import the application into the workspace.
This is pretty basic and there may be some other steps required to complete the job, such as importing images and workspace users but overall, once you do it once, its not that hard.
Thursday, April 03, 2008
Connection to Oracle without using tnsnames
You can use the following syntax to connect
sqlplus user/password@//host:[port]/service_name
sqlplus user/password@//host:[port]/service_name as sysdba
This syntax (known as EZCONNECT) is only available with sqlplus >= v10.2
sqlplus user/password@//host:[port]/service_name
sqlplus user/password@//host:[port]/service_name as sysdba
This syntax (known as EZCONNECT) is only available with sqlplus >= v10.2
Friday, January 04, 2008
Oracle Application Express (APEX) related open source projects
ApexGen - The Oracle APEX Generator
A utility to generate Oracle Application Express pages based on a PL/SQL API.
The Oracle APEX Builder Plugin
The Plugin is a productivity and usability enhancement tool for the development evironment of Oracle Application Express (APEX).It integrates with Firefox and Internet Explorer 6 & 7 to put a wealth of new features to your favourite development tool.
ApexLib - The Oracle APEX Framework Project
The aim of this project is to provide "the" development framework for the Oracle web development environment APEX (Oracle Application Express). APEX is a very productive declarative web-development environment, but which has (as any tool) some short comings. Especially in the area of "out of the box AJAX features" and "out of the box client-side validation".
A utility to generate Oracle Application Express pages based on a PL/SQL API.
The Oracle APEX Builder Plugin
The Plugin is a productivity and usability enhancement tool for the development evironment of Oracle Application Express (APEX).It integrates with Firefox and Internet Explorer 6 & 7 to put a wealth of new features to your favourite development tool.
ApexLib - The Oracle APEX Framework Project
The aim of this project is to provide "the" development framework for the Oracle web development environment APEX (Oracle Application Express). APEX is a very productive declarative web-development environment, but which has (as any tool) some short comings. Especially in the area of "out of the box AJAX features" and "out of the box client-side validation".
Monday, December 17, 2007
Oracle VM
Tarry Singh at http://www.databasejournal.com/features/oracle/article.php/3712246
writes great article how to install Oracle VM.
It gives a really detailed step by step run through the oracle vm installation with loads of pictures showing the screens you see at each stage of the install.
Don't like to read:
8 minutes and you know all about installing Oracle VM
Check out you tube http://www.youtube.com/watch?v=R_W5_5wJy80
writes great article how to install Oracle VM.
It gives a really detailed step by step run through the oracle vm installation with loads of pictures showing the screens you see at each stage of the install.
Don't like to read:
8 minutes and you know all about installing Oracle VM
Check out you tube http://www.youtube.com/watch?v=R_W5_5wJy80
Subscribe to:
Posts (Atom)