12 2021 档案

摘要:本地日志 配置文件postgresql.conf # # ERROR REPORTING AND LOGGING # # - Where to Log - #log_destination = 'stderr' # Valid values are combinations of # stderr, 阅读全文
posted @ 2021-12-31 15:09 乌柒柒 阅读(36) 评论(0) 推荐(0) 编辑
摘要:编辑postgresql.conf文件,此文件位于postegers数据库的安装路径的data目录下,修改shared_preload_libraries这个参数,默认情况下,这个参数是注释的,按照如下进行修改: Linux中 shared_preload_libraries = '$libdir/ 阅读全文
posted @ 2021-12-30 17:34 乌柒柒 阅读(487) 评论(0) 推荐(0) 编辑
摘要:1.查询全部数据库 select * from sys.databases --sql serverselect * from pg_database --pgsql 2.物理文件 SQL SERVER 数据库物理文件保存在 *.mdf ,日志在 *.ldf PostgreSQL 物理文件保存在ba 阅读全文
posted @ 2021-12-29 17:59 乌柒柒 阅读(455) 评论(0) 推荐(0) 编辑
摘要:CREATE FUNCTION [dbo].[f_ClearZero] ( @inValue VARCHAR(50) ) RETURNS VARCHAR(50) AS BEGIN DECLARE @returnValue VARCHAR(20) IF ( @inValue = '' ) SET @r 阅读全文
posted @ 2021-12-27 20:51 乌柒柒 阅读(50) 评论(0) 推荐(0) 编辑
摘要:格式 CREATE FUNCTION function_name(@parameter_name parameter_data_type) --CREATE FUNCTION 函数名称(@参数名 参数的数据类型) RETURNS date_type --返回返回值的数据类型 [WITH ENCRYP 阅读全文
posted @ 2021-12-27 20:50 乌柒柒 阅读(423) 评论(0) 推荐(0) 编辑
摘要:1.自增主键 create table test( id int generated always as identity (cache 100 START WITH 1 INCREMENT BY 1) primary key , name varchar(100) ) CREATE TABLE G 阅读全文
posted @ 2021-12-27 17:17 乌柒柒 阅读(78) 评论(0) 推荐(0) 编辑
摘要:1.下载 https://www.enterprisedb.com/postgresql-tutorial-resources-training?uuid=db55e32d-e9f0-4d7c-9aef-b17d01210704&campaignId=7012J000001NhszQAC 2.使用 阅读全文
posted @ 2021-12-24 15:43 乌柒柒 阅读(324) 评论(0) 推荐(0) 编辑
摘要:1.图像识别 原生——OpenCV飞浆,Emgu C#的封装 OpenCV, OpenCvSharp Emgu http://www.emgu.com/wiki/index.php/Tutorial#Emgu windows要安装 --试过最新版4.5 需要的 Emgu.CV.runtime.win 阅读全文
posted @ 2021-12-24 11:30 乌柒柒 阅读(232) 评论(0) 推荐(0) 编辑
摘要:CHARINDEX 字符串查找 CHARINDEX ( expressionToFind , expressionToSearch [ , start_location ] ) 查找的字符,被搜索的字符,搜索开始 --如果start_location未指定、为负值或零 (0) 值,则搜索从expre 阅读全文
posted @ 2021-12-23 11:41 乌柒柒 阅读(105) 评论(0) 推荐(0) 编辑
摘要:1.添加Nuget程序包 2.json的简单使用 对象转换为json IDictionary<string, object> data=new Dictionary<string, object>(); data.add(......) ..... string str= JsonConvert.S 阅读全文
posted @ 2021-12-17 14:50 乌柒柒 阅读(49) 评论(0) 推荐(0) 编辑
摘要:<meta name="viewport" content="width=device-width"> <title></title> <link href="./Index_files/bootstrap.css" rel="stylesheet"> <script src="./Index_fi 阅读全文
posted @ 2021-12-16 19:21 乌柒柒 阅读(23) 评论(0) 推荐(0) 编辑
摘要:1.普通动态 set @sql='select count(*) from A' exec @sql 2.给变量赋值 DECLARE @nOldDlyOrder INT,@execsql nVARCHAR(800) SET @execsql='SELECT @nOldDlyOrder1=CopySd 阅读全文
posted @ 2021-12-08 11:11 乌柒柒 阅读(38) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示