摘要: *如果是系统崩溃,需要找回数据,PostgreSQL安装目录的data文件夹要存在 1.备份PostgreSQL安装目录到其他目录下 2.停止Postgres服务,可以在运行中输入services.msc,在启动的窗口中关闭掉postgres服务,也可以通过在cmd中输入 net stop post 阅读全文
posted @ 2019-05-27 21:18 Thenext 阅读(834) 评论(0) 推荐(0)
摘要: SQL server : select * into #products_temp from products; 直接查询一个到临时表 Postgersql : create temporary table "t_2" as select * from "SC_Contacts"; 创建一个临时表 阅读全文
posted @ 2019-05-27 15:49 Thenext 阅读(371) 评论(0) 推荐(0)