Search
 
SCRIPT & CODE EXAMPLE
 

SQL

partitioning in oracle-base

CREATE TABLE invoices
(invoice_no    NUMBER NOT NULL,
 invoice_date  DATE   NOT NULL,
 comments      VARCHAR2(500))
PARTITION BY RANGE (invoice_date)
(PARTITION invoices_q1 VALUES LESS THAN (TO_DATE('01/04/2001', 'DD/MM/YYYY')) TABLESPACE users,
 PARTITION invoices_q2 VALUES LESS THAN (TO_DATE('01/07/2001', 'DD/MM/YYYY')) TABLESPACE users,
 PARTITION invoices_q3 VALUES LESS THAN (TO_DATE('01/09/2001', 'DD/MM/YYYY')) TABLESPACE users,
 PARTITION invoices_q4 VALUES LESS THAN (TO_DATE('01/01/2002', 'DD/MM/YYYY')) TABLESPACE users);
Comment

PREVIOUS NEXT
Code Example
Sql :: mysql server create connection string 
Sql :: mysql utc to toronto time 
Sql :: dbt unique key 
Sql :: mysql on delete set null 
Sql :: sql server in linux 
Sql :: How to get number of months between 2 dates sql server 
Sql :: what is in operator 
Sql :: connect to remote mysql server 
Sql :: MySQL 8.0 - Client does not support authentication protocol requested by server; consider upgrading MySQL client 
Sql :: selecting names ending with vowels in sql 
Sql :: sql check if a record exists 
Sql :: sqlite describe table 
Sql :: ssms connect with connection string 
Sql :: mysql stand for 
Sql :: how to select the lowest values from table per client sql 
Sql :: add colum in sql 
Csharp :: how to load the active scene unity 
Csharp :: get current computer name C# 
Csharp :: c# check if type implements interface 
Csharp :: Vector3.signedangle not showin singed angle in unity 
Csharp :: How to read SQL Server COUNT from SqlDataReader 
Csharp :: c# preprocessor if not 
Csharp :: unix time c# 
Csharp :: c# windows grab screenshot 
Csharp :: c# check if string is empty 
Csharp :: how to flip character in unity 2d 
Csharp :: how to delay execution in c# 
Csharp :: easily start admin process from service c# 
Csharp :: byte array to hex c# 
Csharp :: c# run c# code from string 
ADD CONTENT
Topic
Content
Source link
Name
7+3 =