Jonvy

导航

2023年2月23日 #

[TRACE]系统手工安装Postgres及设置步骤_1

摘要: 1.删除 c:\Global_MES\PostgreSQL\data目录 重新在 c:\Global_MES\PostgreSQL中安装Pg 2.以postgres用户登录pgAdmin,建立以下目录,并设置密码 3.以PRODUCTION用户登录pgAdmin,还原数据 阅读全文

posted @ 2023-02-23 14:00 不亮 阅读(41) 评论(0) 推荐(0)

[TRACE]系统手工安装Postgres及设置步骤_0

摘要: 1.C:\Global_MES\PostgreSQL目录安装Postgres 注意:此时的用户名是postgres 2. 把C:\Global_MES\PostgreSQL\Data目录下面的数据清空 3. 清空C:\Global_MES\PostgreSQL\Data目录后,使用命令,初始化: 4 阅读全文

posted @ 2023-02-23 13:59 不亮 阅读(33) 评论(0) 推荐(0)

2023年2月21日 #

postgresql数据库如何查看function?

摘要: SELECT pg_proc.proname AS "函数名称", pg_type.typname AS "返回值数据类型", pg_proc.pronargs AS "参数个数" FROM pg_proc JOIN pg_type ON (pg_proc.prorettype = pg_type. 阅读全文

posted @ 2023-02-21 15:38 不亮 阅读(1128) 评论(0) 推荐(0)

2023年2月6日 #

SQL Server存储过程报错及应用

摘要: 在1206线建立batchs intervals发生以下错误 ERROR QUERY :Violation of PRIMARY KEY constraint 'PK_T_TRANCH_LOT'. Cannot insert duplicate key in object 'dbo.T_TRANCH 阅读全文

posted @ 2023-02-06 11:42 不亮 阅读(115) 评论(0) 推荐(0)

2023年1月24日 #

PostgreSQL开发指南配套资料

摘要: https://github.com/dongxuyang1985/postgresql_dev_guide 阅读全文

posted @ 2023-01-24 11:09 不亮 阅读(59) 评论(0) 推荐(0)

Google Chrome 浏览器官方离线安装包的下载方法

摘要: https://zhuanlan.zhihu.com/p/97198043 阅读全文

posted @ 2023-01-24 09:57 不亮 阅读(130) 评论(0) 推荐(0)

2023年1月21日 #

Creation station扫码检查的递归查询

摘要: with recursive nomentree (refse,refcomp,depth) as (select et_refakf_se,et_refakf_comp,1 as depthfrom t_nomen inner join t_simo on t_simo.et_nomen = t_ 阅读全文

posted @ 2023-01-21 13:44 不亮 阅读(24) 评论(0) 推荐(0)

2023年1月13日 #

Routing的递归查询

摘要: 1.件号 648532700B,共线:3080,3085,3110,3112 四条产线 2:先在t_nomen查出该件号id_nomen号为110509 select id_nomen from t_nomen where et_refakf_se='648532700B' and et_refak 阅读全文

posted @ 2023-01-13 21:52 不亮 阅读(36) 评论(0) 推荐(0)

2023年1月10日 #

SQLite3

摘要: Just make sure you take the "64-bit DLL (x64) for SQLite version 3.30.1" version from this page:https://www.sqlite.org/download.html 阅读全文

posted @ 2023-01-10 22:45 不亮 阅读(33) 评论(0) 推荐(0)

2022年11月19日 #

pgAdmin表导出导入数据及级联删除表

摘要: 1.导出数据,字段名称选项不要勾选 2.Postgres To Postgres 导入即追加,如果表中原有数据,则导入的数据追加在原数据后面 3.级联删除表 DROP TABLE t_stocpf CASCADE 把表t_stocpf及依赖对象一起删除 阅读全文

posted @ 2022-11-19 18:08 不亮 阅读(234) 评论(0) 推荐(0)