We have an application which requires switching between two identical schemas with many tables on a daily basis. Flashback query is used to guarantee data consistency, to make sure we get 100% identical copy of the first schema as of ...
Oraask Latest Questions
Hi, Please i am trying to use dbms_assert package in a SQL statement and I want to understand exactly how dbms_assert protects against SQL injection ? thanks.
Hi, We have two separate linux machines each of them running a different database. but those two machines doesn't have static IPs (i.e. they are using DHCP). Can we in somehow move data between these two databases without assigning static IPs ...
which approach is do better performance do bulk insert by using insert from select or Cursor for loop ? for example : [code] DECLARE CURSOR Test_C IS SELECT * FROM test_table1; BEGIN FOR Test_C_REC IN Test_C LOOP INSERT INTO test_table2(col1, col2, col3) VALUES (Test_C.col1, Test_C.col2, Test_C.col3); END LOOP; END; [/code] or a simple select, like: [code] INSERT INTO ...
hello, I need query to get all packages , procedures and functions in my oracle database thanks in advance
hello guys, what is the FNDLOAD commands to download and upload value sets from one instance to another ?
How to drop all partitions from all tables belonging to this schema based on date Hi, I have a script to delete the partition from a table which meet certain criteria and this the block of code to do this : DECLARE v_sql varchar2(500); v_date ...
How to repeat the same values to the next record from the previous record ?
Hello,How can I load an image from the server and save it in the application on oracle forms, please?Thanks