IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Error while Creating Partition Table


IBM Mainframe Forums -> DB2
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
Furor

New User


Joined: 04 Jun 2009
Posts: 30
Location: Bangalore

PostPosted: Thu Oct 18, 2012 9:36 am
Reply with quote

Code:

CREATE TABLE DBName.TableName           
    (AGE      DECIMAL(4,0) ,   
     NAME         CHAR(4))         
       PARTITION BY RANGE (AGE)   
       (PARTITION 1 STARTING 4 ENDING 10
       IN DBName.TSpaceName );             
 

Error
Code:

SQLERROR ON   CREATE    COMMAND, PREPARE   FUNCTION                             
 RESULT OF SQL STATEMENT:                                                       
 DSNT408I SQLCODE = -199, ERROR:  ILLEGAL USE OF KEYWORD STARTING.  TOKEN ENDING WAS EXPECTED
 DSNT418I SQLSTATE   = 42601 SQLSTATE RETURN CODE                               
 DSNT415I SQLERRP    = DSNHPARS SQL PROCEDURE DETECTING ERROR                   
 DSNT416I SQLERRD    = 2  0  0  -1  106  506 SQL DIAGNOSTIC INFORMATION         
 DSNT416I SQLERRD    = X'00000002'  X'00000000'  X'00000000'  X'FFFFFFFF'  X'000



Db2 Version is 10
I have tried various other ways/example on internet. But nothing actually worked.
Back to top
View user's profile Send private message
dbzTHEdinosauer

Global Moderator


Joined: 20 Oct 2006
Posts: 6966
Location: porcelain throne

PostPosted: Thu Oct 18, 2012 10:22 am
Reply with quote

why use examples on the f******* internet.

use the internet to access the manual,
which would explain the CREATE TABLE statement
which is found here
and look for partitioning-clause:

in your case, I would suggest downloading the PDF
then you would not waste time on internet suggestions.

examples are at the bottom of the first link.
You should also look at partition by growth,
since you are using db2 10.
Back to top
View user's profile Send private message
Furor

New User


Joined: 04 Jun 2009
Posts: 30
Location: Bangalore

PostPosted: Thu Oct 18, 2012 1:44 pm
Reply with quote

Thanks Dbz ...

Thanks Ashimer for helping me on call .. icon_razz.gif
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> DB2

 


Similar Topics
Topic Forum Replies
No new posts Error to read log with rexx CLIST & REXX 11
No new posts Load new table with Old unload - DB2 DB2 6
No new posts Error when install DB2 DB2 2
No new posts Pulling a fixed number of records fro... DB2 2
No new posts CLIST - Virtual storage allocation error CLIST & REXX 5
Search our Forums:

Back to Top