What is status 400 in react?
Oraask Latest Questions
I want help to know how can I convert object to json in javascript
Hello there, I am asking about if there is an API to update AR transaction in Oracle EBS R12 or not? I have searched throw the internet before posting this question and i came across with an API called "AR_INVOICE_SQL_FUNC_PUB.UPDATE_CUSTOMER_TRX" that wrote ...
Hi, this error is displayed whenever trying to open any report from oracle report builder rep-0118 unable to create temporary file
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 ...
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