导航

上一页 1 2 3 4 5 6 7 8 ··· 30 下一页

2020年8月23日

摘要: 步骤一 打开高级设置 EXEC sp_configure 'show advanced options', 1; GO RECONFIGURE; GO EXEC sp_configure 'xp_cmdshell',1 GO RECONFIGURE GO 步骤二 建立 磁盘映射 --确保 网络地址 阅读全文

posted @ 2020-08-23 18:33 yiyishuitian 阅读(307) 评论(0) 推荐(0) 编辑

2020年8月1日

摘要: 直接创建临时表 create temp table tbl_temp(a int); 根据另外一个表创建临时表 CREATE TEMP TABLE mytable AS SELECT * from source_tab; 阅读全文

posted @ 2020-08-01 17:13 yiyishuitian 阅读(218) 评论(0) 推荐(0) 编辑

2020年7月21日

摘要: 1 先查看数据库文件先存放位置及逻辑名称 select database_id , name , physical_name as CurrentLocation , state_desc , size from sys.master_files where database_id = db_id( 阅读全文

posted @ 2020-07-21 16:33 yiyishuitian 阅读(381) 评论(0) 推荐(0) 编辑

2020年7月17日

摘要: 1 使用 报错: ORA-12737:Instant Client Light:unsupported server character set ZHS16GBK 解决方法 1 下载对应 Instant Client,因为我是64位,所以 百度以下关键字: Instant Client Downlo 阅读全文

posted @ 2020-07-17 16:04 yiyishuitian 阅读(176) 评论(0) 推荐(0) 编辑

2020年6月30日

摘要: 新增和更新 可以都通过 jsonb_set 实现 update 表名 set 列名 = (jsonb_set(列名::jsonb,'{key}','"value"'::jsonb,true)) where 条件 1 要注意里面的单引号和双引号 2 true 代表没有会新增,false 代表没有改项, 阅读全文

posted @ 2020-06-30 09:50 yiyishuitian 阅读(380) 评论(0) 推荐(0) 编辑

2020年6月18日

摘要: SELECT CURRENT_TIMESTAMP 当前时间带区, EXTRACT(EPOCH FROM CURRENT_TIMESTAMP ) 当前时间戳, CAST(EXTRACT(epoch FROM CAST( '2020-11-11 00:00:00' AS TIMESTAMP))*1000 阅读全文

posted @ 2020-06-18 20:41 yiyishuitian 阅读(2610) 评论(0) 推荐(0) 编辑

2020年5月22日

摘要: 1 下载 ODBC 驱动,可以找最新的安装。我下载的是: https://www.postgresql.org/ftp/odbc/versions/msi/ https://www.postgresql.org/ftp/odbc/versions.old/msi/ 2 到SQL SERVER 服务器 阅读全文

posted @ 2020-05-22 18:51 yiyishuitian 阅读(2762) 评论(0) 推荐(0) 编辑

2020年5月6日

该文被密码保护。 阅读全文

posted @ 2020-05-06 16:13 yiyishuitian 阅读(0) 评论(0) 推荐(0) 编辑

2020年4月7日

摘要: Postgresql like 区分大小写 , ilike 不区分 阅读全文

posted @ 2020-04-07 23:25 yiyishuitian 阅读(338) 评论(0) 推荐(0) 编辑

2020年3月18日

摘要: INSERT INTO OPENQUERY([linkName],'select name from database.dbo.target;') select name from source 阅读全文

posted @ 2020-03-18 14:38 yiyishuitian 阅读(185) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 ··· 30 下一页