Overblog All blogs Top blogs Jobs, Education & Studies
Follow this blog Administration + Create my blog
MENU
Advertising

what is bulk collect?

BULK COLLECT Bulk binds can improve the performance when loading collections from a queries. The BULK COLLECT INTO construct binds the output of the query to the collection. It can be used with all three types of collections: associative arrays, nested...

Read more

Advertising

Bulk Binds in Oracle

Bulk Binds Bulk binding decreases context switch between PL/SQL engine and SQL Engine that makes code execution faster. Context switch occurs every time when PL/SQL calls SQL engine to parse, execute or fetch from cursor. Since context switching uses...

Read more

Bulk Binds in Oracle

Bulk Binds Bulk binding decreases context switch between PL/SQL engine and SQL Engine that makes code execution faster. Context switch occurs every time when PL/SQL calls SQL engine to parse, execute or fetch from cursor. Since context switching uses...

Read more

Plsql Collection Methods

Collection Methods A collection method is a built-in PL/SQL subprogram that returns information about a collection or operates on a collection. Collection methods make collections easier to use, and make your applications easier to maintain. You invoke...

Read more

Advertising

TRIGGERS

A trigger is an database object which executes automatically in response to a an on a particular table in a database. the event can be insert , update or delete. Triggers are stored programs, which are automatically executed or fired when some events...

Read more

Deleting the duplicate records

Deleting the duplicate records The usual need is to delete all but one such row. The first thing is to know the deciding factor -out of the duplicates, which one is to be retained? The next SQL retains the row with the minimum rowid: SQL> delete from...

Read more

Advertising
SQL SERVER Log shipping:

SQL SERVER Log shipping:

Log shipping: Shipping the transnational log backups from one server (Primary) to another server (Secondary) SQL Server Log shipping allows you to automatically send transaction log backups from a primary database on a primary server instance to one or...

Read more

INDEXS IN SQL SERVER

clustered index --------------- datapages store into leaf level nodes only one clustered index for table (data arrange physically only one way) good performance not allow duplicates If we create primary key on table on any key column then automatically...

Read more

<< < 10 20 30 31 32 33 34 35 36 37 > >>