Got it

CAD connection alarm system recording playback failed

Created: Oct 30, 2018 07:08:45Latest reply: Oct 30, 2018 09:11:24 775 2 0 0 0
  Rewarded HiCoins: 0 (problem resolved)
CAD connection alarm system recording playback failed

Featured Answers

Dear user,


It is possible that the Oracle database tablespace is full, resulting in read and write exceptions.

1.Use the following statement to query table space usage:


select
total.tablespace_name tsname,
count(free.bytes) nfrags,
nvl(max(free.bytes)/1024,0) mxfrag,
total.bytes/1024 totsiz,
nvl(sum(free.bytes)/1024,0) avasiz,
(1-nvl(sum(free.bytes),0)/total.bytes)*100 pctusd
from
dba_data_files total,
dba_free_space free
where
total.tablespace_name = free.tablespace_name(+)
and total.file_id=free.file_id(+)
group by
total.tablespace_name,
total.bytes


2.If the table space is confirmed to be full, use the following statement to modify the table space.


Add data files to increase tablespaces. 


Run the following commands: 


SQL> alter tablespace TABLESAPCENAME add datafile 'filePath' size SPACESIZE;


• TABLESAPCENAME: name of the tablespace.


• filePath: path and name of the data file allocated to the tablespace. 


To obtain the new file path, run the select name from v$datafile; command to view the path of similar data files.


• SPACESIZE: space size to be allocated.


Command example:


SQL> alter tablespace CBP_TABLE_SPACE add datafile '+DG_DATA/rdata90' size 1950m;

View more
  • x
  • convention:

All Answers
more details please
View more
  • x
  • convention:

Dear user,


It is possible that the Oracle database tablespace is full, resulting in read and write exceptions.

1.Use the following statement to query table space usage:


select
total.tablespace_name tsname,
count(free.bytes) nfrags,
nvl(max(free.bytes)/1024,0) mxfrag,
total.bytes/1024 totsiz,
nvl(sum(free.bytes)/1024,0) avasiz,
(1-nvl(sum(free.bytes),0)/total.bytes)*100 pctusd
from
dba_data_files total,
dba_free_space free
where
total.tablespace_name = free.tablespace_name(+)
and total.file_id=free.file_id(+)
group by
total.tablespace_name,
total.bytes


2.If the table space is confirmed to be full, use the following statement to modify the table space.


Add data files to increase tablespaces. 


Run the following commands: 


SQL> alter tablespace TABLESAPCENAME add datafile 'filePath' size SPACESIZE;


• TABLESAPCENAME: name of the tablespace.


• filePath: path and name of the data file allocated to the tablespace. 


To obtain the new file path, run the select name from v$datafile; command to view the path of similar data files.


• SPACESIZE: space size to be allocated.


Command example:


SQL> alter tablespace CBP_TABLE_SPACE add datafile '+DG_DATA/rdata90' size 1950m;

View more
  • x
  • convention:

Comment

You need to log in to comment to the post Login | Register
Comment

Notice: To protect the legitimate rights and interests of you, the community, and third parties, do not release content that may bring legal risks to all parties, including but are not limited to the following:
  • Politically sensitive content
  • Content concerning pornography, gambling, and drug abuse
  • Content that may disclose or infringe upon others ' commercial secrets, intellectual properties, including trade marks, copyrights, and patents, and personal privacy
Do not share your account and password with others. All operations performed using your account will be regarded as your own actions and all consequences arising therefrom will be borne by you. For details, see " User Agreement."

My Followers

Login and enjoy all the member benefits

Login

Block
Are you sure to block this user?
Users on your blacklist cannot comment on your post,cannot mention you, cannot send you private messages.
Reminder
Please bind your phone number to obtain invitation bonus.