Top "Oracle" questions

Oracle Database is a Multi-Model Database Management System created by Oracle Corporation.

insert a multiline string in Oracle with sqlplus

I have a SQL script that will insert a long string into a table. The string contains a new line (…

sql oracle newline sqlplus
java.sql.SQLException: Invalid column name

I cannot figure out why I am getting "Invalid column name" here. We have tried a variant of the sql …

java oracle jdbc spring-jdbc jdbctemplate
alternative to listagg in Oracle?

listagg is a function introduced in Oracle 11.2! now this function is bugging us allot, we are migrating from MySQL to …

sql oracle varchar clob
Querying an Oracle database from SQL Server

I have an Oracle 11g XE database that I would like to transfer into SQL Server Express 2005. At first I …

sql-server oracle oledb openquery tnsnames
How to use record to loop a ref cursor?

I want to write PL/SQL to test a function in a package. The package defines a cursor type TYPE …

oracle plsql record ref-cursor
How can I do a batch insert into an Oracle database using Python?

I have some monthly weather data that I want to insert into an Oracle database table but I want to …

python oracle python-2.7 cx-oracle batch-insert
Difference Between Insert and Append statement in SQL Loader?

Can any one tell me the Difference Between Insert and Append statement in SQL Loader?consider the below example : Here …

oracle sql-loader
Network access denied by access control list (ACL) in Oracle Database 11g

Recently we have switched from Oracle 10g to 11g, and only now I noticed that my mailing function does not …

oracle plsql oracle11g ora-24247
oracle query between two dates with hours

This is my current oracle table: DATE = date HOUR = number RUN_DURATION = number I need a query to get RUN_…

sql oracle date-arithmetic
SQL (ORACLE): ORDER BY and LIMIT

I want do sorting by property ALL data in my db and ONLY AFTER that use LIMIT and OFFSET. Query …

sql oracle sql-order-by offset sql-limit