关于Truncate table, 以下()描述是错误的。
第1题:
delete from tablea & truncate table tablea的区别
truncate 语句执行速度快,占资源少,并且只记录页删除的日志;
delete 对每条记录的删除均需要记录日志
第2题:
如果要删除A数据库中的B表,可以使用下列哪个命令?______
A.ALTER TABLE B
B.TRUNCATE TABLE B
C.DROP TABLE B
D.DELETE TABLE B
第3题:
ORACLE数据库中如何删除表table中的所有记录,并回收所有空间()
第4题:
要求删除表test中的所有数据,但是不删除表,而且该删除操作不允许ROLLBACK,应该使用的语句为()。
第5题:
如下能正确执行的语句是()
第6题:
关于Truncatetable,以下()描述是错误的。
第7题:
下面哪一个SQL语句将删除DEPT表中的所有数据,并永久删除DEPT表的整个结构()
第8题:
Evaluate the SQL statement:TRUNCATE TABLE DEPT;Which three are true about the SQL statement? ()
第9题:
假定表A中有十万条记录,要删除表中的所有数据,但仍要保留表的结构,请问用以下哪个命令效率最高()
第10题:
用于删除表中所有数据行的命令是()。
第11题:
Truncate table可跟Where从句,根据条件进行删除。
Truncate table用来删除表中所有数据。
触发器对Truncate table无效。
delete比Truncate table速度快。
第12题:
Truncate table 可跟Where从句,根据条件进行删除
Truncate table 用来删除表中所有数据
触发器对Truncate table无效
delete 比Truncate table速度快
第13题:
A.delete all from book
B.delete from book
C.truncate table book
D.drop table book
参考答案:BC
第14题:
请问oracle的整表删除操作()是正确的。
第15题:
删除emp表中所有数据,且无法rollback,以下语句哪个命令可以实现()
第16题:
删除emp表的全部数据,但不提交,以下正确的语句是()
第17题:
关于Truncatetable,以下()描述是正确的。
第18题:
若要删除book表中所有数据,以下语句错误的是()
第19题:
数据表从数据库中删除(连表名也删除)的命令语句如下:()
第20题:
Which three descriptions are correct about the effects of the TRUNCATE command on a table()
第21题:
delete from system.table1与truncate table system.table1区别是什么?
第22题:
Truncate table 可跟Where从句,根据条件进行删除
Truncate table 用来删除表中所有数据
触发器对Truncate table无效
delete 比Truncate table速度快
第23题:
The corresponding indexes for the table are also truncated.
Delete triggers on the table are fired during the execution of the TRUNCATE command.
The child table is truncated when the TRUNCATE command is applied on the parent table.
The high-water mark (HWM) is set to point to the first usable data block in the table segment.
No undo or very little undo data is generated during the execution of the TRUNCATE command