自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

  • 博客(134)
  • 资源 (72)
  • 问答 (2)
  • 收藏
  • 关注

原创 cecryptPassword kettle

【代码】cecryptPassword kettle。

2025-06-18 15:37:54 54

原创 airflow docker compose deployment script

【代码】airflow docker compose deployment script。

2025-06-10 10:00:46 67

原创 Sqlalchemy 连mssql坑

连接失败: (pyodbc.OperationalError) ('08001', '[08001] [Microsoft][ODBC Driver 17 for SQL Server]SSL Provider: [error:0A00014D:SSL routines::legacy sigalg disallowed or unsupported] (-1) (SQLDriverConnect)')Hi微软,实例没有加密就不让连了吗。

2025-05-29 20:46:20 341

原创 dify Database Query DB-Lib error message 20002, severity 9

【代码】dify Database Query DB-Lib error message 20002, severity 9。

2025-05-29 10:10:41 142

原创 Adminer 连接mssql sqlserver

./freetds/freetds.conf:/etc/freetds.conf:rw # 确保 :rw 可读写。Adminer 安装mssql sqlserver php 驱动;adminer 安装pdo_dblib mssql;这个版本的镜像不用自己安装驱动了。耗时一个美好的周六下午。

2025-05-24 20:43:03 519

原创 Error! DLL amfrt64.dll failed to open

Intel集显,win10下ffmpeg报DLL amfrt64.dll failed to open 解决办法创建:C:\Users\用户1\.matplotlib\matplotlibrc设置:animation.codec: h264_qsv # Codec to use for writing moviefigure.dpi: 300figure.figsize: 7, 4.5axes.labelsize: 18legend.fontsize: 14#

2023-12-19 10:38:47 920

原创 ChatGLM2-130b 生成 pymysql 动态CURD

【代码】ChatGLM2-130b 生成 pymysql 动态CURD。

2023-12-06 17:25:25 420

原创 visual studio 2013 SSDT SSRS开发面板的“report data”面板显示快捷键

visual studio 2013 SSDT SSRS开发面板的“report data”面板显示快捷键"Ctrl+Alt+D"

2020-06-03 11:40:34 662 1

原创 maxwell sparkstream to hbase cdc

maxwell 读取binlog发送消息到kafka源表要求有id主键sqoop导入后,启动stream对update delete insert进行cdc到hbasesqoop import -D sqoop.hbase.add.row.key=true --connect "jdbc:sqlserver://192.168.10.1xx:1433;database=tupdw" --username usertest--password **** --table t_mkt_item...

2020-06-02 10:58:35 354

原创 HDP 2.6.4 kettle 7.1 spark-submit配置

Kettle 提交spark sql 作业到 spark2!Kettle 7.1 HDP 2.6.4kettle 7.1自带hdp2.5插件,测试spark-submit到hdp2.6.4正常运行参考官方资料https://help.pentaho.com/Documentation/8.0/Products/Data_Integration/Job_Entry_Referen...

2019-04-22 16:08:26 1530

原创 k8s centos7新增节点

swapoff -a sed -i 's/.*swap.*/#&/' /etc/fstabcat <<EOF > /etc/sysctl.d/k8s.confnet.bridge.bridge-nf-call-ip6tables = 1net.bridge.bridge-nf-call-iptables = 1EOFsysctl --systemyum ...

2018-09-19 10:12:02 759

原创 大数据笔记-01、hdp2.6整合kylin2.4.1注意

在hdp  hive的config中添加下列项,否则kylin无法启动hive.security.authorization.sqlstd.confwhitelist.append=dfs.replication|hive.input.format..*|tez.queue.name| mapreduce..*|mapreduce.job.split.metainfo.maxsize|hive...

2018-09-18 09:20:54 1143 1

原创 superset连接kylin2.4 坑!pykylin与kylinpy

解决办法只安装官方介绍的kylinpy不要自行安装pykylinsuperset连接kylin2.4 uri成功:kylin://ADMIN:XXXXXXXXXX@192.168.10.200:7070/learn_kylin?prefix=/kylin/api&version=v1失败kylin://ADMIN:XXXXXXXXXX@192.168.10.20...

2018-09-06 11:53:51 2081 1

原创 sqoop 1.4.7 导入hive

sqoop import --driver com.microsoft.sqlserver.jdbc.SQLServerDriver --connect "jdbc:sqlserver://192.168.10.128:1433;database=kylin" \ --username user01 --password #### --table=sqoop_test ...

2018-09-05 11:14:44 638

原创 kettle 不改变原表,通过本地辅助表记录時間戳来实际准增量更新

2018-06-20 17:35:30 743 1

原创 sql server 死锁简易例子2--可通过索引优化解决死锁问题

工作些年,常听见的一名话是“死锁是程序问题,不能通过优化数据库来解决死锁,必须要改写程序,做好事务与访问顺序方面的控制”如果产生死锁的业务模块频繁访问大量堆表,通过数据库优化是在一定的概率下可以解决死锁问题的,大概有百分四十的概率可以通过优化索引解决死锁问题。死锁概念产生原理在csdn上的很多。在这里举个通过索引优化解决死锁问题的简单栗子,证明我来过...窗口1:创建测试表USE [test]G...

2018-05-29 19:05:12 1452

原创 sql server 死锁简易例子

产生死锁的原因主要是:(1) 因为系统资源不足。(2) 进程运行推进的顺序不合适。(3) 资源分配不当等。如果系统资源充足,进程的资源请求都能够得到满足,死锁出现的可能性就很低,否则就会因争夺有限的资源而陷入死锁。其次,进程运行推进顺序与速度不同,也可能产生死锁。产生死锁的四个必要条件:(1) 互斥条件:一个资源每次只能被一个进程使用。(2) 请求与保持条件:一个进程因请求资源而阻塞时,对已获得的...

2018-05-29 18:21:18 2390

原创 SSMS 2016 Microsoft.VisualStudio.Text.Editor.ITextEditorFactoryService

---------------------------Microsoft SQL Server Management Studio---------------------------Expected 1 export(s) with contract name "Microsoft.VisualStudio.Text.Editor.ITextEditorFactoryService" but f...

2018-03-21 16:16:10 597

原创 mysql 查看表空间

SELECT *FROM (SELECT table_name, CONCAT(ROUND(SUM(data_length / 1024 / 1024), 2), 'MB') AS data_length_MB, ROUND(SUM(data_length / 1024 / 1024), 2) data_leng

2018-01-09 17:30:35 7133 1

原创 sql server lpad rpad

-- ================================================-- Template generated from Template Explorer using:-- Create Scalar Function (New Menu).SQL---- Use the Specify Values for Template Parameters -

2018-01-09 14:21:54 1041

原创 sql server批量重命名索引

;WITH t1 as(        SELECT        DB_NAME() AS DatbaseName        , SCHEMA_NAME(O.Schema_ID) AS SchemaName        , OBJECT_NAME(I.object_id) AS TableName        , I.NAME AS IndexName,row_num

2018-01-09 13:59:50 1520

转载 sql server 导出 image到文件

DECLARE @picture_id numeric(18,0), @organ_no varchar(81), @picture_name nvarchar(255), @picture_size intDECLARE my_cursor CURSOR FAST_FORWARD READ_ONLY FORSELECT picture_id, organ_no, pictu

2017-11-28 18:24:42 5551

原创 自动生成unpivot,方便table展示字符度量

DECLARE @TBLNAME NVARCHAR(100),@SCHEMA NVARCHAR(100) --SELECT @TBLNAME='T_ORGAN_OUTLET_WEEKLY_REPORT',@SCHEMA='DBO'CREATE PROC up_auto_create_unpivot( @TBLNAME NVARCHAR(100),@SCHEMA NVARCHAR(100))

2017-11-28 13:39:02 380

原创 sql server 中止运行时间超过阈值的作业

USE [msdb]GO/****** Object: StoredProcedure [dbo].[kill_elapsed_job_by_name] Script Date: 2017/9/26 16:09:27 ******/SET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ONGO CREATE PROCEDURE [dbo].[k

2017-09-26 16:11:05 1064

原创 查看存储过程依赖的表

DECLARE @procname NVARCHAR(100) = 'dbo.test_tbl' SELECT DISTINCT @procname procname,SCHEMA_NAME(t.[schema_id]) + '.' + OBJECT_NAME(referenced_major_id) AS tblname,referenced_major_id

2017-06-06 14:04:00 2990

原创 tsql生成mysql ,mssql insert语句办法,实现全脚数据迁移

tsql生成mysql ,mssql insert语句办法,实现全脚数据迁移

2016-12-27 11:28:26 538

原创 sql server merge 做insert和update

CREATE TABLE test1 (id INT, f1 VARCHAR(10),f2 VARCHAR(10),f3 VARCHAR(10))GOINSERT INTO test1 SELECT 1,1,1,1INSERT INTO test1 SELECT 1,2,2,2goCREATE TABLE test2 (id INT, f5 VARCHAR(10),f6 VARCHA

2016-12-21 17:53:08 5295

转载 https://blog.hanschen.org/2012/10/17/open-application-launcher-with-super-key/

https://blog.hanschen.org/2012/10/17/open-application-launcher-with-super-key/How to make it workInstall ksuperkey. You can download the source and some distro-specific packages from Linux-a

2016-11-17 19:04:36 1255

原创 powershell 批量修改excel第一个worksheet的名字

rename-workbook.bat@echo offpowershell -file .\rename-workbook.ps1 %cd% "请不要修改些处"@pauserename-workbook.ps1CLScd $args[0]$xldoc = New-Object -ComObject "Excel.Application"foreach($file i

2016-11-10 13:58:25 1395

原创 sql server 实例迁移注意事项之 恢复master key

sql server 实例迁移注意事项之 恢复master key

2016-11-03 11:29:25 3289

转载 使用YUM安装并启动MySQL服务后,MySQL进程会自动在进程日志中打印root用户的初始密码

https://typecodes.com/linux/yuminstallmysql5710.htmlCentOS 7.2使用yum安装MYSQL 5.7.10作者:vfhky | 时间:2016-02-26 14:55 | 分类:linux前面两篇文章《2015博客升级记(四):CentOS 7.1编译安装MySQL5.7.7rc》、《阿里云CentOS 7.1

2016-10-11 13:30:30 841

原创 hybris 5.7可用模块

PS E:\hybris5.7\hybris-commerce-suite-5.7.0.1\installer> $str=&{cmd.exe /c install.bat -l}PS E:\hybris5.7\hybris-commerce-suite-5.7.0.1\installer> $str|Where-Object -FilterScript {$_ -notlike " *"}J

2016-09-30 17:30:19 1230

原创 dos 定时执行作业 dos timer

现在定时作业的工具语言很多,最方便的个人认为wondows人肯定数bat莫属,还有一点复古feel,dos_time_cn.bat 可以定时call 一个bat文件,或者是windows console app 程序不同区域下的终端时间显示不同,所以准备了两个文件方便日后使用dos_timer_cn.bat for 中文环境dos_timer_en.bat for 英文环境

2016-09-27 12:57:54 5332

原创 三步完成,sql server 2014 实例迁移

要点:SQL Server 2012 无人值守安装(添加新实例)http://blog.youkuaiyun.com/wangzhpwang/article/details/40739533sql server  版本要一致实例安装目录最好要一致检查原sql server安装目录下log目录下的ConfigurationFile.ini获取必要参数尝试1,尝试通过修改Configu

2016-09-27 10:33:43 3150

转载 Cannot change version of project facet Dynamic Web Module to 2.3

While working on maven project, encountered an error:Cannot change version of project facet Dynamic Web Module to 2.3.          line 1    Maven Java EE Configuration ProblemWhen I tr

2016-09-12 16:41:37 378

转载 Calling an Oracle function from SQL Server Linked Server

I used the following syntax and it worked for me.EXECUTE (Query, Parameters) AT LinkedServerNameExample:EXECUTE ( 'BEGIN ? := Package.MyFunction(?,?); END;', @ReturnValue, @InputPara, @OutputPara

2015-12-18 17:10:22 455

转载 Oracle 11g listener fails with ORA-12514 and ORA-12505 errors

http://dba.stackexchange.com/questions/36370/oracle-11g-listener-fails-with-ora-12514-and-ora-12505-errors

2015-03-20 10:02:46 555

原创 sql server merge 实现 trigger t_merge_gomac_avpickmap

IF OBJECT_ID('t_merge_gomac_avpickmap', N'TR') IS NOT NULLBEGIN PRINT 'Dropping Trigger t_merge_gomac_avpickmap' DROP TRIGGER t_merge_gomac_avpickmap IF @@ERROR = 0 PRINT 'Trigger

2015-03-18 16:40:02 545

原创 dos定时运行,dos timer

dos定时运行,dos timer

2015-03-17 15:19:23 1274

转载 POWERSHELL 生成.bat文件,ascii

Set-Content bar.cmd '@set BAR=1' -Encoding ASCIIPowerShell will default to UTF-16 LE.Short version.sc bar.cmd '@set BAR=1' -en ASCII

2015-03-17 14:38:18 1228

2010 年全国硕士研究生入学统一考试英语试题

2010 年全国硕士研究生入学统一 考试英语试题 2010 考研 英语 真题

2010-03-21

CentOS 5.5 图形安装教程(超详细)

CentOS 5.5 图形安装教程(超详细) CentOS 5.5 图形安装教程 一.准备安装 CentOS 5.x 系统 1.CentOS 简介 . CentOS 是一个开源软件贡献者和用户的社区. 它...

2011-03-03

hypervdetail.pdf

软件的 hyperv,VMware的替代品,又多了一个选择,哈哈

2013-05-09

sql 入门 tsql 入门

sql 入门 tsql 入门 sql 实例,sql 简单教程 sql 教程

2010-06-12

创腾7A05 linux 驱动

大概用法: 编译环境安装: yum install gcc -y yum install kernel-devel -y tar -xvf *.gz cd make make install cd os/linux /sbin/insmod/mt7601Usta.ko #如果内核版本为2.6 /sbin/insmod/mt7601Usta.o #2.4 创腾(STRONGTUM) 7A05 微型 150M无线USB网卡 centos 6.5 linux 驱动

2014-04-24

SQL server 触发器,在触发Merge过程中,逐行触发的解决办法 用group by 避免是一次触发中的多行更新或删除。

SQL server 触发器,在触发Merge过程中,逐行触发的解决办法 用group by 避免是一次触发中的多行更新或删除。

2014-10-29

解释Dos %cd% 的例子

近期的工作要处理.bat文件,在dos文件错综复杂的调用过程中,我迷失了,于是%cd%解释Dos %cd% 的例子

2014-10-31

jpa 2.0 jar 包 下载

jpa 2.0 jar 包 下载 jpa 2.0 jar 包 下载 jpa 2.0 jar 包 下载

2010-05-06

gcc-4.7_4.7.3-2_i386.deb gcc-4.7_4.7.3-2_amd64.deb

gcc-4.7_4.7.3-2_i386.deb gcc-4.7_4.7.3-2_amd64.deb : line 3: cd: host-x86_64-unknown-linux-gnu/fixincludes: No such file or directory make[1]: *** [install-fixincludes] Error 1

2013-05-01

自动控制原理 清华5版 课件

自动控制原理 清华5版 课件 大家学习 自动控制原理 清华5版 课件

2010-03-21

传智播客 spring PPT 黎活明(很经典)

传智播客 spring PPT 黎活明(很经典)

2010-04-14

n5230飞信n5230飞信 nokia 5230版 飞信 下载 5230 专用 版飞信 n5230 官方版 飞信 非通用版 诺基亚 5230 专用版 飞信

n5230飞信 nokia 5230版 飞信 下载 5230 专用 版飞信 n5230 官方版 飞信 非通用版 诺基亚 5230 专用版 飞信n5230飞信 nokia 5230版 飞信 下载 5230 专用 版飞信 n5230 官方版 飞信 非通用版 诺基亚 5230 专用版 飞信

2010-04-15

最新 linux 飞信 支持

Fetion for Linux,使用飞信2010最新协议[9月25日更新v1.9] 安装方法: sudo apt-get install libgtk2-dev sudo apt-get install libssl-dev apt-get install libxml2-dev sudo apt-get install pkg-config Then you can start installing openfetion like this: autoreconf -fiv ./configure --prefix=/usr or your can enable debug mode to trace the runing information with --enable-debug make sudo make install

2010-10-24

2005-07年华北电力大学系统分析考研复试试题

2005年华北电力大学系统分析考研复试试题 2006年华北电力大学系统分析考研复试试题 2007年华北电力大学系统分析考研复试试题

2010-03-21

2010 年 全国硕士研究生入学 考试 数学二 试题 考研 数二 真题

2010 年 全国硕士研究生入学 考试 数学二 试题 考研 数二 真题

2010-03-21

SQL Server 2005数据库管理高级教程

SQL Server 2005数据库管理高级教程

2011-03-17

2010 年 全国硕士研究生入学 考试 数学三 试题 考研 真题

2010 年 全国硕士研究生入学 考试 数学三 试题 考研 数三 真题

2010-03-21

飞信 for linux fectioin for linux fection for ubuntu

apt-get install libcurl4-gnutls-dev,然后下载 libfetion for ubuntu,目前版本最新是 v1.2。

2010-05-12

2010年全国硕士研究生入学考试数学一试题

2010 年 全国硕士研究生入学 考试 数学一 试题 考研 真题

2010-03-21

2008年华北电力大学会计学考研试题

2008年华北电力大学会计学考研试题2008年华北电力大学会计学考研试题

2010-03-21

Dify 生成营销文案、输入关键字

夏天、青春牌、净水器、健康

2025-04-03

bat+sqlcmd 通过参数形式调用任意存储过程的办法

bat+sqlcmd 通过参数形式调用任意存储过程的办法

2014-11-16

powershell 批量修改excel第一个worksheet的名字

powershell 批量修改excel第一个worksheet的名字

2016-11-10

bootstrap 免费登陆页面、登陆表单(共三款)

bootstrap-login-forms.zip bootstrap-login-forms.zip bootstrap 免费登陆页面、登陆表单(共三款)

2016-11-09

bat+sqlcmd 批量运行脚本

bat+sqlcmd 批量运行脚本 Hello,此BAT脚本可以帮助开发人员将某文件夹下所有SQL脚本按文件名依次在指定数据库中批量执行。不用忍受powershell invoke-sqlcmd 的笨重,在指运行时多一种选择。

2014-11-05

openconnect install

openconnect install

2015-02-05

kettle rest 接口 请求实例

kettle rest 接口 请求实例,rest client 登陆,获取解释token,保存token,批量、单个请求接口,json交互

2018-06-29

Automation

Automation create dos ,sqlcmd powershell job with sql server agent

2014-11-18

powershell 批量修改excel第一个worksheet的名字-禁用宏

powershell 批量修改excel第一个worksheet的名字

2016-11-10

Powershell生成数据库脚本.zip

$SMOserver = New-Object ('Microsoft.SqlServer.Management.Smo.Server')

2017-11-17

google-chrome-stable_current_x86_64

google-chrome-stable_current_x86_64 centos 7 rpm sudo rpm -ivh google-chrome-stable_current_x86_64.rpm Preparing... ################################# [100%] package google-chrome-stable-73.0.3683.75-1.x86_64 is already installed

2019-03-15

spring-cloud-stream-app-descriptor-Celsius.SR3

spring-cloud-stream-app-descriptor-Celsius.SR3.stream-apps-kafka-10-docker

2018-09-18

APOMS_TSQL_Deployment_Package_05Dec.rar

APOMS_TSQL_Deployment_Package_05Dec.rar TSQL 对象 自动征收脚本,组装sqlcmd,按顺序批量执行 要求powershell 2.0 以上 sqlps

2014-12-05

SqlPlusSpoolPaging

SqlPlusSpoolPaging , using sqlplus output paging .csv data files

2015-03-20

PowerShell batch job mail module

PowerShell batch job mail module

2014-12-17

sqlserver实例迁移脚本-密码是手机号

sqlserver实例迁移脚本-密码是手机号 sqlserver实例迁移脚本-密码是手机号

2018-08-01

powershell batch job mail

APOMS_TSQL_Deployment_Package_05Dec.rar TSQL 对象 自动征收脚本,组装sqlcmd,按顺序批量执行 要求powershell 2.0 以上 sqlps

2014-12-17

errorlevel.rar

关于 sql server sqlcmd 异常捕捉 %errorlevel%

2015-03-04

Kwin Scripts

https://store.kde.org/content/show.php/Tiling?content=161151 Description: Note that this requires kde 4.11 for the config interface at least Tiling script for kwin, featuring: - A useractionmenu to selectively tile windows - Three layouts, all mouse-resizable - One layout with the option to set multiple "master" windows ("M-S-+" to increment, "M-S--" to decrement) - The option to deactivate tiling per-desktop via keybinding - A configuration menu for floating windows (by class) - An option to remove windowborders - "Animated" resizing and moving - Optional "useless" gaps Hotkeys: ("M" here stands for what is usually the windows key, "S" stands for shift) M-PgUp / M-PgDown: Switch layout for current desktop M-S-F11: Deactivate tiling on current desktop M-f: Toggle between tiling and floating for active window M-S-m: Swap active window with the master window M-S-+: Increment number of master windows in (default) "HalfLayout" M-S-h, M-S-j, M-S-k, M-S-l: Move window in corresponding direction The following have been removed in 1.6.2 as they are already provided by kwin (but set to different keys): M-u: Toggle window borders M-h, M-j, M-k, M-l: Switch focus in corresponding direction If you would like to help, consider reporting bugs and maybe even sending pullrequests to www.github.com/faho/kwin-tiling Changelog: 2 years ago * Forgot to enable bladelayout, could lead to crashes/script not working. * 1.0.1: Fix some issues with panel at the top * 1.1.0: Add an option to disable borders This should only be used with FocusUnderMouse, as because of a kwin limitation focus can jump and it's impossible to tell which window has focus * 1.1.1: Bugfixes and an attempt to adjust to new or removed panels * 1.1.2: Enable resize "animations" and bugfixes (again including panel struts) * 1.1.3: Retile on layout switch and keep desktop floating state * 1.1.4: Bugfixes related to tabgroups and the focus hotkeys * 1.2: Properly retile when a client resizes (including borders), "animate" moving, improve resizing "animation", add keybinding to toggle window border and bugfixes * 1.2.1: Remove broken tabgroup handling (tabgroups float for now) and add a possible bugfix for some transparency issues * 1.3 (unreleased): Readd clients that return (e.g. are unminimized) to their previous tile, bugfixes (including resizing) * 1.3.1: Tabgroups, add shortcut (Meta+Shift+M) to swap a window with the master, bugfixes * 1.3.1.1: Fix plasmoids immediately closing * 1.3.1.2: Fix maximizing, fullscreen and resizing bugs * 1.3.2: Fix windows not responding and focus-follows-mouse choosing the wrong window, add an option to open windows as master * 1.3.3: Fix movement losing windows, add workaround for steam update window, fix tiling not working * 1.4: Add option to disable tiling by default, add per-desktop layout configuration (as a line of text currently), add shortcut to toggle borders on all clients (M-S-U), add shortcuts to resize the master window (M-Alt-{h,j,k,l}), minor bug fixes * 1.5: Bugfixes (including crashes), optional gaps between windows, respect min/maxsize (unfortunately this could cause crashes under certain circumstances) * 1.6 (unreleased): Make resizing layout-agnostic, a manual tiling mode, code cleanup, fix tiling when compositing is disabled * 1.6.1: Respect min/maxSizes, multiple (or zero) master support in halflayout, bugfixes * 1.6.2: Make respecting min/MaxSizes an option, improve fullscreen behavior, improve configuration UI, remove shortcuts for toggling a border for a single window and switching focus (as they are provided by kwin itself already) * 1.6.3: Fix crash when number of desktops isn't height * width of desktopgrid, fix default floating list * 1.7.0: Bugfixes, add option to defer placement to kwin

2016-11-12

AutoIndex auto create missing indexes

AutoIndex AutoIndex auto create missing indexes

2014-12-02

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除