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

UTL FILE in Oracle

UTL FILE With the UTL_FILE package, PL/SQL programs can read and write operating system text files. UTL_FILE provides a restricted version of operating system stream file I/O. UTL_FILE is a PL/SQL package that can be used to write to operating system...

Read more

Advertising

Partitioning Types in Oracle

RANGE partitioning. This type of partitioning assigns rows to partitions based on column values falling within a given range. CREATE TABLE employees ( id INT NOT NULL, fname VARCHAR(30), lname VARCHAR(30), hired DATE NOT NULL DEFAULT '1970-01-01', separated...

Read more

What is RDBMS?

What is RDBMS? RDBMS stands for Relational Database Management System. It organizes data into related rows and columns. Features:- It stores data in tables. Tables have rows and column. These tables are created using SQL. And data from these tables are...

Read more

Advertising

TRANSLATE Function in SQL?

What is TRANSLATE Function in SQL? Replaces the Characters in a string with required set of characters. It Replaces one character at a time. It Translate character by character Example: SELECT ' TECHBLOG' STRING, TRANSLATE('TECHBLOG','TECH','SQL') TRANSLATE...

Read more

REPLACE Function in SQL

What is REPLACE Function in SQL? Replaces the Characters in a string with required set of characters. It Translate Pattern by Pattern. Example: SELECT ' TECHBLOG' STRING, REPLACE('TECHBLOG','TECH','SQL') REPLACE FROM DUAL; WHERE ENAME LIKE'%A%'; STRING...

Read more

Ranking Functions in sql server

DENSE_RANK NTILE RANK ROW_NUMBER DENSE_RANK The DENSE_RANK Function is one of the SQL Server ranking function. This function will assign the rank number to each record present in a partition without skipping the rank numbers. SQL DENSE_RANK Function Syntax...

Read more

Advertising

SQL Server

SQL SQL Server 2014 Create Database SELECT Statement WHERE Clause ALIAS Column ORDER BY Clause TOP Clause SELECT DISTINCT Statement SELECT INTO Statement INSERT INTO SELECT Statement GROUP BY Clause HAVING Clause BULK INSERT Statement SQL Query Builder...

Read more

<< < 10 11 12 13 14 15 16 17 18 19 20 30 40 > >>