View previous topic :: View next topic |
Author |
Message |
arshadh Beginner
Joined: 10 Jan 2007 Posts: 33 Topics: 12
|
Posted: Wed Sep 12, 2007 10:51 am Post subject: Can a USER with no special rights create a table..? |
|
|
Is there any Tablespace in a particular Database into which an USER with no SYSADM or DBADM rights can create a table for test purpose?
Because one of tables have gone to CHKP state and I need to find rows that caused problem(lacking parent row) by creating an exception table.
For your Info:
Code: | SELECT * FROM SYSIBM.SYSUSERAUTH
WHERE GRANTEE ='TSO ID'; |
returned no rows... |
|
Back to top |
|
|
videlord Beginner
Joined: 09 Dec 2004 Posts: 147 Topics: 19
|
Posted: Thu Sep 13, 2007 3:12 pm Post subject: |
|
|
run check data without DELETE YES first
no exception table needed, you can get the information whect broken RI exist.
and you can the get RID for the exception rows from check data output |
|
Back to top |
|
|
arshadh Beginner
Joined: 10 Jan 2007 Posts: 33 Topics: 12
|
Posted: Mon Sep 24, 2007 6:59 am Post subject: |
|
|
Thanks Videlord,
I ran the Check DAta and got the Row id 's of troubling rows...
But How to associate the particular ROW ID with the row...Please help me.. |
|
Back to top |
|
|
videlord Beginner
Joined: 09 Dec 2004 Posts: 147 Topics: 19
|
Posted: Tue Sep 25, 2007 10:52 am Post subject: |
|
|
A little difficult to get the row by the RID, can you paste one line of the output?
The easist way is :
create exception table, run CHECK DATA with DELETE YES |
|
Back to top |
|
|
arshadh Beginner
Joined: 10 Jan 2007 Posts: 33 Topics: 12
|
Posted: Thu Sep 27, 2007 11:59 pm Post subject: |
|
|
Thanks for your suggestions,,,,, |
|
Back to top |
|
|
|
|