Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> repository creation problem
Hi,
I am a complete newbie to oracle (using v9) and am trying to create a
repository. The following error has come up in the
"CKGLBWRK
Creating the Global Shared Work Area"
stage. Object details: "CKGLBWRK" in "CKGLBWRK.sql". Below follows the error messages. Can anyone help please.
thanks
Iain
Message
Cause
Action
Message
Cause
Action
Message
Cause
Action
Message
Cause
Action
Message
wkarea_irid number; rtn_id number; comment varchar2(100); l_SUPPORTS_DESIGNER varchar2(1); l_SUPPORTS_JDEVEE varchar2(1);
BEGIN
dbms_output.enable(1000000);
select SUPPORTS_JDEVEE
, SUPPORTS_DESIGNER
into l_SUPPORTS_JDEVEE
, l_SUPPORTS_DESIGNER
from rm$repositories;
wkarea_irid := jr_workarea.create_workarea( user,
'GLOBAL SHARED WORKAREA', comment, 'SHARED');
update sdw_access_rights
set access_privs = sdd_acc_priv_list('Y', -- 'Delete'
'Y', -- 'Administrate' 'Y', -- 'Insert' 'Y', -- 'Select' 'Y', -- 'Update' 'N', -- 'Version' 'N', -- 'Compile' 'N') -- 'Update Spec'where object_type = 'WA'
update sdw_users
set system_privs = sdd_sys_priv_list('N', -- 'Manage Workarea'
'N', -- 'Manage Configuration' 'Y', -- 'Manage Container' 'Y', -- 'Manage User' 'N', -- 'Manage Branch Label' 'Y', -- 'Manage Dependency' 'N', -- 'Manage VVC' ** NOT USED ** 'Y', -- 'Register Schema' 'Y', -- 'Set Policy' 'N', -- 'Purge' 'Y', -- 'Force Delete' 'N', -- 'Global Purge' 'Y', -- 'Connect via Repository Object Navigator' 'Y', -- 'Connect via Repository Adminstration Utility' 'Y', -- 'Connect via Matrix Diagrammer' 'Y', -- 'Connect via Repository Reports' 'Y', -- 'Connect via Command Line Interface' 'N', -- 'Connect via Version History Viewer' 'N') -- 'Connect via Version Event Viewer'where username = user
update ck_installed_objects
set ci_created = 'Y'
where ci_stage='CKGLBWRK';
commit;
dbms_output.put_line('* Operation Complete');
EXCEPTION
WHEN OTHERS THEN dbms_output.put_line('* Exception Raised '); dbms_output.put_line('...ERROR: '||substr(sqlerrm,1,240)); rollback work;
Cause
Action
![]() |
![]() |