http://www.oracle.com/technetwork/articles/sql/11g-sqlplanmanagement-101938.html
If the optimizer finds a different execution plan for that statement it will also be captured and stored in the SMB but it will not be an accepted plan. After a few executions, the database knows more about the cursors and the values and decides if the cursor should be made to change plans based on the values
Oracle Dynamic SQL
http://docs.oracle.com/cd/B28359_01/appdev.111/b28427/pc_13dyn.htm
Method 3 This method lets your program accept or build a dynamic query, then process it using the PREPARE command with the DECLARE, OPEN, FETCH, and CLOSE cursor commands. Regardless of the value of DBMS, if you use a VARCHAR variable to store the dynamic SQL statement, make sure the length of the VARCHAR is set (or reset) correctly before you execute the PREPARE or EXECUTE IMMEDIATE statement
Replicating Transactions Between Microsoft SQL Server and Oracle Database Using Oracle GoldenGate
http://www.oracle.com/technetwork/articles/datawarehouse/oracle-sqlserver-goldengate-460262.html
This options tells the Extract process to routinely check and delete the CDC capture job, resulting in better performance and less occupied space for captured data. The company is now encouraging its customers to use Oracle GoldenGate (which is part of the Oracle Fusion Middleware family) for their data replication needs in new applications
http://blog.sqlauthority.com/2006/12/10/sql-server-find-stored-procedure-related-to-table-in-database-search-in-all-stored-procedure/
First the good sides of encryption: * you want to hide what the sprocs are doing * you want to minimize the risk of someone changing sprocs on the fly Now to the not so good sides: * It gives you a false impression of security. Fill in your details below or click an icon to log in: Email (required) (Address never made public) Name (required) Website You are commenting using your WordPress.com account
SQL Commands
http://docs.oracle.com/html/A95915_01/sqcmd.htm
CREATE USER STEVE IDENTIFIED BY STINGRAY; GRANT ADMIN TO STEVE; REVOKE ADMIN FROM STEVE; Example 2 The following example revokes the INSERT and DELETE privileges on the EMP table from the user, SCOTT. Example The following statement drops the procedure TRANSFER owned by the user KERNER and invalidates all objects that depend on TRANSFER: DROP PROCEDURE kerner.transfer Related Topics CREATE PROCEDURE 4.3.29 DROP SCHEMA Syntax Figure 4-38 The DROP SCHEMA Command BNF Notation DROP SCHEMA schema
No comments:
Post a Comment