Put your tips and tricks online - Share your knowledge! Login | Register
 
 
  Search     Advanced search
 

Home | Ask Question | Add tip | My tips | Recent tips & tricks | Suggest a category | FAQ | Forums

h8dk97 : member's tip(s)


   Found 202 tips, Displaying 41 - 50 
 
Sort by 
 
 How to create users using command line utility jazn.jar
If you don't bother with LDAP (i.e. Active Directory) and use file based security for your Oracle Application Server / SOA environment you can use jazn.jar to manage users and roles, which makes it a little easier as opposed to using enterprise manager console. Below are some examples of using jazn ...
 More...
08/07/08
 
 
Category : Miscellaneous > Middleware > Oracle Fusion Middleware > Oracle SOA Suite
 
 
 What privileges are needed to create stored procedures and packages
To create package or a stored procedure in your own schema you will need: CREATE PROCEDURE privilege granted to your user account. To create packages and stored procedures in other schemas you will need: CREATE ANY PROCEDURE
     
More...

07/29/08
 
 
Category : Databases > Oracle > Security
 
 
 How to installl Standalone Resource Adapters in a new OC4J container
This procedure describes how to install AQ and JMS adapters in a new OC4J container - the one you've created for a custom application perhaps. Note: this is applicable to OAS / SOA 10.1.3.x. cd $ORACLE_HOME/j2ee/[container name]/config Edit server.xml and add the following lines (replace ORACLE_HOME with the actual directory): ...
     
More...

07/17/08
 
 
Category : Miscellaneous > Middleware > Oracle Fusion Middleware > Oracle SOA Suite
 
 
 How to upgrade Oracle 10.2.0.3 to 10.2.0.4
1. Shutdown database running on older version 2. Edit oratab and change ORACLE_HOME to 10.2.0.4 for the database being upgraded 3. Start the database 4. Run the upgrade assistant $ORACLE_HOME/bin/dbua ... that's it
     
More...

07/14/08
 
 
Category : Databases > Oracle > Oracle 10g
 
 
 Create tar archive and compress in one step
This command will create a tar archive of directory 'dir' and compress it using gzip, the output file will be dir.tgz. tar cf - dir | gzip -c > dir.tgz
     
More...

07/07/08
 
 
Category : Operating Systems > Unix
 
 
 Set PHP register_globals on in .htaccess file
Put this line in your .htaccess file: php_flag register_globals on
 More...
07/02/08
 
 
Category : Internet > Web Servers > Apache > mod_rewrite and .htaccess
 
 
 Find world writable files
find /dir -xdev -perm /o=w ! -type d ! -type l -exec ls -asl {} \;
     
More...

06/25/08
 
 
Category : Operating Systems > Linux
 
 
 Get buffer cache hit ratio / miss ratio
SQL> SELECT name, 1-(physical_reads / (consistent_gets + db_block_gets )) "HIT_RATIO" FROM V$BUFFER_POOL_STATISTICS WHERE ( consistent_gets + db_block_gets ) !=0 / NAME HIT_RATIO -------------------- ---------- DEFAULT .817011081 -- ...
 More...
06/24/08
 
 
Category : Databases > Oracle > Performance Tuning
 
 
 Dropping online redo logs
If you want to move redo logs to another filesystem without shutting down the database you can create new groups on the new filesystem and drop the old groups. 1. Create new online redo log groups SQL> ALTER DATABASE ADD LOGFILE ('/path2redo/redo4a.log') SIZE 100M; SQL> ALTER DATABASE ADD LOGFILE ('/path2redo/redo5a.log') SIZE 100M; SQL> ALTER ...
 More...
06/13/08
 
 
Category : Databases > Oracle
 
 
 How to enable autoextend on tablespaces and datafiles
-- Create tablespace with a datafile that will be auto extended to 10Gb create tablespace TABLESPACE_NAME datafile '/path/to/datafile.dbf' size 2000M AUTOEXTEND ON MAXSIZE 10000M extent management local uniform size 5M segment space management auto; If you want to enable autoextend on a smallfile tablespace (if you are trying to alter tablespace to ...
     
More...

06/04/08
 
 
Category : Databases > Oracle
 
 


<< 1 | 2 | 3 | 4 | Page 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 >>

Home |  FAQ |  Terms of Use |  Privacy Policy

© 2005 tiplib.com