导航

08 2020 档案

摘要:Problems starting spoon Q: When I start Spoon.bat in a Windows environment nothing happens. How can I analyze the problem? A: Use the SpoonDebug.bat f 阅读全文

posted @ 2020-08-24 19:07 yiyishuitian 阅读(849) 评论(0) 推荐(0)

摘要:表示: MaxPermSize=128m 属性 8.0 版本 已经取消。 所以 Compatibility Guide for JDK 8 says that in Java 8 the command line flag MaxPermSize has been removed. The reas 阅读全文

posted @ 2020-08-24 19:04 yiyishuitian 阅读(1191) 评论(0) 推荐(0)

摘要:EXEC sp_addlinkedserver @server='192.168.0.1',--被访问的服务器别名 @srvproduct='', @provider='SQLOLEDB', @datasrc='192.168.0.1' --要访问的服务器 EXEC sp_addlinkedsrvl 阅读全文

posted @ 2020-08-24 12:17 yiyishuitian 阅读(287) 评论(0) 推荐(0)

摘要:步骤一 打开高级设置 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 阅读(319) 评论(0) 推荐(0)

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

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