What this error means??? Help me in connecting to the ORACLE 10g.
I have studied on the net that for Oracle to connect three ora files need to be there. But in my ADMIN Folder two files are created by Oracle Configuration Tools names SqlNet.ORA , TNSNAMES.ORA. LISTENER.ORA file is not created.
Disclaimer: Advice is provided to the best of my knowledge but no implicit or explicit warranties are provided. Since the advisor explicitly encourages testing any and all suggestions on a test non-production environment advisor should not held liable or responsible for any actions taken based on the given advice.
Can you please give me the link from where to download Oracle Server 10g. Moreover, I have the exe named ODTwithODAC1020221.exe --> THIS IS THE ORACLE SERVER 10g ?????
Disclaimer: Advice is provided to the best of my knowledge but no implicit or explicit warranties are provided. Since the advisor explicitly encourages testing any and all suggestions on a test non-production environment advisor should not held liable or responsible for any actions taken based on the given advice.
Good job. Successfull tnsping means your Oracle software appears to be fine and an Oracle instance a.k.a. database SID=SONIA is up-and-running.
To have access to your database use sqlplus (if you like a character based interface) or sqldeveloper if you like a GUI interface. SQLDeveloper is a free Oracle product, you can download and install as it pleases you.
Disclaimer: Advice is provided to the best of my knowledge but no implicit or explicit warranties are provided. Since the advisor explicitly encourages testing any and all suggestions on a test non-production environment advisor should not held liable or responsible for any actions taken based on the given advice.
Uff This Oracle will Kill Me One Day. I am not able to create table in ORACLE from last so many days...UFF.
I have executed the foll. statements in command Prompt . CREATE TABLE is giving me the ERROR - no privileges on tablespace 'SYSTEM'
Code:
SQL> SHOW USER
USER is "SONIA"
SQL>
SQL> SELECT username,privilege FROM USER_SYS_PRIVS;
USERNAME PRIVILEGE
------------------------------ ----------------------------------------
SONIA CREATE SESSION
SONIA CREATE TABLE
SQL> CREATE TABLE CUSTOMER(CustID Number(5) Primary Key, CustName Varchar(20));
CREATE TABLE CUSTOMER(CustID Number(5) Primary Key, CustName Varchar(20))
*
ERROR at line 1:
ORA-01950: no privileges on tablespace 'SYSTEM'
Uff This Oracle will Kill Me One Day. I am not able to create table in ORACLE from last so many days...UFF.
I have executed the foll. statements in command Prompt . CREATE TABLE is giving me the ERROR - no privileges on tablespace 'SYSTEM'
Code:
SQL> SHOW USER
USER is "SONIA"
SQL>
SQL> SELECT username,privilege FROM USER_SYS_PRIVS;
USERNAME PRIVILEGE
------------------------------ ----------------------------------------
SONIA CREATE SESSION
SONIA CREATE TABLE
SQL> CREATE TABLE CUSTOMER(CustID Number(5) Primary Key, CustName Varchar(20));
CREATE TABLE CUSTOMER(CustID Number(5) Primary Key, CustName Varchar(20))
*
ERROR at line 1:
ORA-01950: no privileges on tablespace 'SYSTEM'
You don't want to create user objects like a tale in SYSTEM tablespace.
Create a tablespace for your stuff, grant privs on it to SONIA, set that tablespace as the default tablespace for user SONIA then create your table :-)
Disclaimer: Advice is provided to the best of my knowledge but no implicit or explicit warranties are provided. Since the advisor explicitly encourages testing any and all suggestions on a test non-production environment advisor should not held liable or responsible for any actions taken based on the given advice.
Bookmarks