08 2020 档案

摘要:select 'alter table '|| table_name ||' allocate extent;' from user_tables where segment_created='NO'; 阅读全文
posted @ 2020-08-16 09:46 Journey&Flower 阅读(201) 评论(0) 推荐(0)
摘要:sql="select top 30 * from data where title='"&title1&"' order by id desc"原意是选出符合“where 条件”的记录集里的“前30条” 但是,对于该SQL语句,由于语句里同时存在where和top语句的,并且where条件列不是合 阅读全文
posted @ 2020-08-14 19:06 Journey&Flower 阅读(2516) 评论(0) 推荐(0)
摘要:ORACLE: SELECT T.COLUMN_NAME,'A.' || T.COLUMN_NAME || ',' FROM USER_COL_COMMENTS T WHERE T.TABLE_NAME = UPPER('TABLE_NAME'); 阅读全文
posted @ 2020-08-13 17:07 Journey&Flower 阅读(243) 评论(0) 推荐(0)
摘要:以下命令以管理员身份打开cmd命令窗口 1、列出本机端口列表 及进程ID netstat -ano 2、查找本地指定端口号 并列出进程ID netstat -ano|findstr [端口号] 例:netstat -ano -p tcp | find "3389" >nul 2>nul && ech 阅读全文
posted @ 2020-08-13 16:15 Journey&Flower 阅读(203) 评论(0) 推荐(0)