PASTEBIN
| #1 paste tool since 2002
create new paste
tools
api
archive
faq
PASTEBIN
create new paste
trending pastes
sign up
login
my alerts
my settings
my profile
Don't like ads?
PRO users
don't see any ads ;-)
Public Pastes
Para ti darthmoulder
0 sec ago
Untitled
Java | 1 sec ago
startup
Lua | 5 sec ago
Stop Light?
Lua | 17 sec ago
Untitled
11 sec ago
Untitled
12 sec ago
Stripmineprogramm
13 sec ago
Untitled
15 sec ago
Untitled
By: a guest on
May 30th, 2012
| syntax:
None
| size: 0.16 KB | hits: 10 | expires: Never
download
|
raw
|
embed
|
report abuse
|
print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
shrinking a column in oracle
create table dummy (col1 number(9) not null)
ALTER TABLE dummy ADD
CONSTRAINT c1
CHECK (col1 < 9999999)
ENABLE
VALIDATE;
create a
new version
of this paste
RAW Paste Data
shrinking a column in oracle create table dummy (col1 number(9) not null) ALTER TABLE dummy ADD CONSTRAINT c1 CHECK (col1 < 9999999) ENABLE VALIDATE;