Microsoft
Software
Hardware
Network
Question : Tablespace
CREATE TABLE CDR.MEMBERELIGATTRID
(
ATTRTYPEID NUMBER(12) NOT NULL,
ATTRID NUMBER(12) NOT NULL,
ATTRVALUE VARCHAR2(100 BYTE) NOT NULL,
INSERTEDBY NUMBER(12) NOT NULL,
INSERTDATETIME DATE DEFAULT sysdate NOT NULL,
RUNID NUMBER(12) DEFAULT null NOT NULL
)
TABLESPACE CDR_DATA
PCTUSED 0
PCTFREE 10
INITRANS 1
MAXTRANS 255
STORAGE (
INITIAL 3328K
NEXT 1M
MINEXTENTS 1
MAXEXTENTS UNLIMITED
PCTINCREASE 0
BUFFER_POOL DEFAULT
)
LOGGING
NOCOMPRESS
NOCACHE
NOPARALLEL
MONITORING;
I got the above table definition from my workplace and I want to how to define define tablespace when we create the table and what all fields we need to define. Can someone guide me.
Can this be done also for indexes
Answer : Tablespace
One quick way would be to use something like this:
SELECT * FROM mytable WHERE PATINDEX('%[^[ a-z0-9!@#$%^&*()-_=+]%' ,myfield) > 0
You might have to add more characters to this, but this is just a quick example.
Random Solutions
Blank screen After WIn XP splash screen.
SSRS 2008 Data-Driven Subscription Errors - Email not sent
HP PRINTER P3015 and P3005 cartridge compartible?
Dynamically Label Radio Button Lists in ASP.net
Macro that will create 52 otherwise identical named ranges, each with a different number in the middle.
Restore from older backups
Replacing Keyboard on Toshiba Portege A600
Gateway for Server automatically being removed after restart
How do I combine CustomValidators with RequiredFieldValidators and RegularExpressionValidator
s?
VBA macro script populating cells from data source