यदि आपके पास ऐसा करने के लिए SQL स्क्रिप्ट है तो आप उपयोगकर्ता को स्विच करने के लिए बस कनेक्ट स्टेटमेंट जोड़ सकते हैं जैसा कि नीचे दिखाया गया है।
मेरे पास test.sql
है फ़ाइल जिसमें अनुदान और परिवर्तन विवरण शामिल हैं। मेरे पास दो उपयोगकर्ता हैं sh
और hr
।
conn sh/[email protected]
grant REFERENCES on sh.customers to hr;
conn hr/[email protected]
ALTER TABLE cust ADD CONSTRAINT fk1 FOREIGN KEY (ID) REFERENCES sh.customers(CUST_ID) ON DELETE CASCADE ENABLE;
और मैंने बस स्क्रिप्ट को निष्पादित किया है।
[[email protected] ~]$ sqlplus / as sysdba
SQL*Plus: Release 12.1.0.2.0 Production on Tue Jan 17 15:19:40 2017
Copyright (c) 1982, 2014, Oracle. All rights reserved.
Connected to:
Oracle Database 12c Enterprise Edition Release 12.1.0.2.0 - 64bit Production
With the Partitioning, Automatic Storage Management, OLAP, Advanced Analytics
and Real Application Testing options
SQL> @test.sql
Connected.
Grant succeeded.
Connected.
Table altered.
SQL>