
oracle
svygh123
软件开发、APP开发、浏览器插件开发、爬虫、自动化
展开
-
几大数据库常用语句
H2:-- 测试版本: 1.4.193create table a_tb(id varchar(32));drop table if exists a_tb;MSSQL:-- 测试版本: SQLServer 2008R2create table a_tb(id varchar(32));if object_id(N'dbo.a_tb', N'U') is not null...原创 2019-12-10 22:11:45 · 179 阅读 · 0 评论 -
SQLServer left join 出现比左表多的数据
create table a( id int, name varchar(100))create table b( id int, name varchar(100))insert into a(id,name) values(1,'a');insert into b(id,name) values(1,'a');insert into b(id,name) values(...原创 2019-12-05 17:54:16 · 1502 阅读 · 0 评论 -
PLSQL连接远程Oracle出现ORA-12541: 无监听程序
PLSQL连接远程Oracle出现ORA-12541: 无监听程序原创 2015-12-12 20:51:18 · 10560 阅读 · 2 评论 -
oracle11g调整表空间和临时表空间大小
由于C盘过大,使用SpaceSniffer.exe扫描了一下磁盘空间,发现是因为oracle数据库文件占用过大导致,查询了表空间大小和使用率SELECT a.tablespace_name "表空间名", total / (1024 * 1024 * 1024) "表空间大小(G)", free / (1024 * 1024 * 1024) "表空间剩余大小(G)", ...原创 2019-09-17 22:33:50 · 1872 阅读 · 0 评论