
oracle
猫被老鼠追着跑
任重道远
展开
-
oracle删除表空间下所有内容
declare v_name all_tables.table_name%type; cursor mycur is select table_name from all_tables where owner='TEST'; begin open mycur; loop fetch mycur into v_nam原创 2016-11-17 11:13:05 · 960 阅读 · 0 评论 -
驼峰式命名的字符串与数据库字段下划线大写方式的转换
/** * 将驼峰式命名的字符串转换为下划线大写方式。如果转换前的驼峰式命名的字符串为空,则返回空字符串。 * 例如:HelloWorld->HELLO_WORLD * @param name 转换前的驼峰式命名的字符串 * @return 转换后下划线大写方式命名的字符串 */ public static String un翻译 2017-07-03 11:46:27 · 6916 阅读 · 0 评论