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

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

Oracle 11g Architecture

Oracle 11g Architecture

1. What is the Oracle Architectural components ? Oracle Architectural components segregated in two parts - Physical & Logical layer. The physical layer consists of files that reside on the disk, the components of the logical layer map the data to these...

Read more

Advertising

INDEXES IN ORACLE

Indexes Indexes Indexes are optional structures associated with tables. Indexes can be created to increase the performance of data retrieval. Just as the index in a manual helps you quickly locate specific information, an Oracle index provides an access...

Read more

ORACLE DBA INTERVIEW QUESTIONS

Q: What are the Oracle Background Processes? A: The Oracle Background Processes are programs or tasks that run on the Oracle background such as log writers, db writers, archives, checkpoint, etc. Q: Describe the V$BGPROCESS view. A: The V$BGPROCESS view...

Read more

Birlasoft PLSQL Interview Questions

What is module overloading? What are composite data types? What is the use of record. Why we use record. what is diifrence between where clause and having clause? What is collection? Difference b/w nested tables and varrays? what is a bad file? What are...

Read more

Database Mail Architecture in SQL SERVER

SMTP Server Details Hotmail SMTP server name: smtp.live.com Port number: 587 Gmail SMTP server name: smtp.gmail.com Port number: 587 Yahoo SMTP server name: smtp.mail.yahoo.com Port number : 25 AOL SMTP server name: smtp.aol.com Port number : 587 Database...

Read more

Advertising

Maintenance Plan Wizard in SQL Server

Maintenance Plan Wizard in SQL Server ----------------------------------------------------- SQL Server maintenance plan wizard is inbuilt feature which helps in creating automated maintenance jobs for database integrity checks, rebuild and reorganize...

Read more

Fixed Server Roles in SQL Server

You can execute the below query and find the fixed and user defined server roles. SELECT name, principal_id, type, type_desc, is_fixed_role, owning_principal_id FROM sys.server_principals WHERE type = 'R' There are eight types of fixed server roles in...

Read more

<< < 10 20 30 40 41 42 43 44 45 46 47 48 49 > >>