摘要:
一、Mysql 1、新建一个测试表 CREATE TABLE TestNull(col VARCHAR(100)); //插入四条数据 INSERT INTO TestNull VALUES(NULL); INSERT INTO TestNull VALUES('tom'); INSERT INTO 阅读全文
摘要:
oracle 导出或者导入数据库,用户密码中含有@符号 错误信息: EXP-00056: ORACLE error 12154 encountered ORA-12154: TNS:could not resolve the connect identifier specified EXP-0000 阅读全文
摘要:
1、导出 语法:exp 用户名/密码@服务名 tables=表名 file=xxx.dmp log=xxx.log owner=用户名 导出表: exp username/password@orcl tables=sys_user file=D:/user.dmp log=D:/user.log 导 阅读全文
摘要:
1、11G中有个新特性,当表无数据时,不分配segment,以节省空间; 只需要在空表中添加一条数据在删除,就会产生segment。导出时则可导出空表。 (1)、查询所有表中那些是空表。 select table_name from user_tables where NUM_ROWS=0; (2) 阅读全文
摘要:
一、Mysql 1、Mysql 批量删除表数据 SELECT CONCAT('delete from ',table_name,';') FROM information_schema.`TABLES` WHERE table_schema='数据库名'; 2、复制表结构及表数据 create ta 阅读全文
摘要:
1、基本语法 SELECT * FROM table LIMIT [offset,] rows | rows OFFSET offset; 如果只给定一个参数,表示记录数。 SELECT * FROM table LIMIT 5; //检索前5条记录(1-5) 相当于 SELECT * from t 阅读全文