tablespace

ORA-01658: unable to create INITIAL extent for segment in tablespace TS_DATA

依然范特西╮ 提交于 2019-11-29 01:55:26
When i tried to create a table in my User_DB schema i am getting an error as ORA-01658: unable to create INITIAL extent for segment in tablespace TS_DATA . I run the following query to get all the TABLESPACE_NAME : SELECT * FROM DBA_DATA_FILES; But i really dont know which tablespace i am using and how to extend the tablespace to solve this issue. As the error message indicates, you're using the TS_DATA tablespace. You can extend it by either enlarging one of the existing data files: ALTER DATABASE DATAFILE 'C:\ORACLEXE\APP\ORACLE\ORADATA\XE\TS_DATA.DBF' RESIZE 3000M; Or by adding a second

ORA-01653: unable to extend table by in tablespace ORA-06512

╄→гoц情女王★ 提交于 2019-11-28 16:50:14
I tried to generate some test data by running the following sql. BEGIN FOR i IN 1..8180 LOOP insert into SPEEDTEST select 'column1', 'column2', 'column3', 'column4', 'column5', 'column6', 'column7', 'column8', 'column9', 'column10', 'column11', 'column12', 'column13', 'column14', 'column15', 'column16', 'column17', 'column18', 'column19', 'column20', 'column21', 'column22', 'column23', 'column24', 'column25', 'column26', 'column27', 'column28', 'column29', 'column30', 'column31', 'column32', 'column33', 'column34', 'column35', 'column36', 'column37', 'column38', 'column39', 'column40',

ORA-01950: no privileges on tablespace 'USERS' [closed]

僤鯓⒐⒋嵵緔 提交于 2019-11-28 16:17:26
I'm getting this error: ORA-01950: no privileges on tablespace 'USERS' I have a default tablespace and I'm able to create tables, however, they do not show at the objects tab in Toad. I cannot insert anything into tables I create. You cannot insert data because you have a quota of 0 on the tablespace. To fix this, run ALTER USER <user> quota unlimited on <tablespace name>; or ALTER USER <user> quota 100M on <tablespace name>; as a DBA user (depending on how much space you need / want to grant). 来源: https://stackoverflow.com/questions/21671008/ora-01950-no-privileges-on-tablespace-users

ORA-01658: unable to create INITIAL extent for segment in tablespace TS_DATA

半世苍凉 提交于 2019-11-27 16:19:02
问题 When i tried to create a table in my User_DB schema i am getting an error as ORA-01658: unable to create INITIAL extent for segment in tablespace TS_DATA . I run the following query to get all the TABLESPACE_NAME : SELECT * FROM DBA_DATA_FILES; But i really dont know which tablespace i am using and how to extend the tablespace to solve this issue. 回答1: As the error message indicates, you're using the TS_DATA tablespace. You can extend it by either enlarging one of the existing data files:

ORA-01653: unable to extend table by in tablespace ORA-06512

你离开我真会死。 提交于 2019-11-27 09:59:57
问题 I tried to generate some test data by running the following sql. BEGIN FOR i IN 1..8180 LOOP insert into SPEEDTEST select 'column1', 'column2', 'column3', 'column4', 'column5', 'column6', 'column7', 'column8', 'column9', 'column10', 'column11', 'column12', 'column13', 'column14', 'column15', 'column16', 'column17', 'column18', 'column19', 'column20', 'column21', 'column22', 'column23', 'column24', 'column25', 'column26', 'column27', 'column28', 'column29', 'column30', 'column31', 'column32',

Error: Tablespace for table xxx exists. Please DISCARD the tablespace before IMPORT

混江龙づ霸主 提交于 2019-11-27 02:39:09
I am fairly new to MySQL and I am getting a pretty interesting error on which I cannot find any help via google and the stackoverflow search. I am running a local server of MySQL 5.6.10 on MacOS 10.8.3 and manage my database via Navicat essentials for MySQL. The error I get is that after running and managing my database just fine for a couple of days/weeks something triggers to (it appears incompletely) delete some of the tables I created using queries from within Navicat. When I try to run queries using these tables, Navicat then warns me that the particular table does not exist. So far so

ORA-01652 Unable to extend temp segment by in tablespace

蓝咒 提交于 2019-11-27 02:05:31
问题 I am creating a table like create table tablename as select * for table2 I am getting the error ORA-01652 Unable to extend temp segment by in tablespace When I googled I usually found ORA-01652 error showing some value like Unable to extend temp segment by 32 in tablespace I am not getting any such value.I ran this query select fs.tablespace_name "Tablespace", (df.totalspace - fs.freespace) "Used MB", fs.freespace "Free MB", df.totalspace "Total MB", round(100 * (fs.freespace / df.totalspace)

Error: Tablespace for table xxx exists. Please DISCARD the tablespace before IMPORT

▼魔方 西西 提交于 2019-11-26 10:10:49
问题 I am fairly new to MySQL and I am getting a pretty interesting error on which I cannot find any help via google and the stackoverflow search. I am running a local server of MySQL 5.6.10 on MacOS 10.8.3 and manage my database via Navicat essentials for MySQL. The error I get is that after running and managing my database just fine for a couple of days/weeks something triggers to (it appears incompletely) delete some of the tables I created using queries from within Navicat. When I try to run