本文介绍了当我们在oracle或sql等中创建表时,数据存储在哪里?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当我们在sql或sql *中创建表时,将在其中存储数据以及如何从该存储中检索数据.

when we create table in sql or in sql * plus where the data will be stored and how this data can be retrived from that storage.

推荐答案

CREATE DATABASE mynewdb
DATAFILE '/u01/oracle/oradata/mynewdb/system01.dbf' SIZE 325M REUSE
...




:)
从这里阅读数据库体系结构:
http://www.docs.hp.com/en/T1428-90056/ch15s04.html [ ^ ]

:rose:




:)
Read the database architecture from here :
http://www.docs.hp.com/en/T1428-90056/ch15s04.html[^]

:rose:


这篇关于当我们在oracle或sql等中创建表时,数据存储在哪里?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-04 16:32