惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Vercel News
Vercel News
博客园 - 司徒正美
C
Check Point Blog
G
Google Developers Blog
The GitHub Blog
The GitHub Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
有赞技术团队
有赞技术团队
P
Proofpoint News Feed
IT之家
IT之家
B
Blog
博客园_首页
量子位
MongoDB | Blog
MongoDB | Blog
博客园 - Franky
J
Java Code Geeks
H
Help Net Security
A
About on SuperTechFans
Apple Machine Learning Research
Apple Machine Learning Research
Jina AI
Jina AI
D
DataBreaches.Net
Y
Y Combinator Blog
大猫的无限游戏
大猫的无限游戏
云风的 BLOG
云风的 BLOG
Google DeepMind News
Google DeepMind News

博客园 - lzlvv

debug1: Authentications that can continue: publickey sgrptprod@114.141.166.109: Permission denied (publickey). Connection closed. linux sftp 设置了用户对目录有 0700权限,但在上传时报 Permission denied错误 linux 服务器设置 时 /etc/passwd设置为nologin时,登录SFTP会报 No supported authentication methods available win10系统已经映射的网络驱动器在其他应用软件无法读到解决方案 Linux SFTP服务器部署 linux添加用户并赋予root权限 C# Socket通信 Socket传输结构数据 Windows Server 2016如何关闭和打开防火墙 | 详细教程 在‌Windows Server 2016中显示‌桌面图标的方法 C#常用正则表达式 完全图解RAID存储技术:RAID 0、1、5、6、10、50、60 MySQL 5.7 安装教程(Win 10) 在 Windows 使用 PuTTYgen 上生成 SSH 密钥 NPOI使用手册 Windows 批处理(bat)语法大全 Oracle ODP.NET ConnectionString接池及连接参数 SQL update select结合语句详解及应用 从FoxPro数据库中提取结构/索引到Excel
MSSQL中添加链接数据库
lzlvv · 2024-01-25 · via 博客园 - lzlvv

----添加mssql winddb

--以下添加链接数据库脚本:WINDDB210是别名,SQLOLEDB是指链接SQLSERVER数据库,xxx.xxx.xxx.xxx是远程数据库地址,
exec master.dbo.sp_addlinkedserver 'WINDDB210', ' ', 'SQLOLEDB', 'xxx.xxx.xxx.xxx'

--以下对添加链接数据库的登录用户:WINDDB210是别名,usrid是远程数据库的用户名,pwd是远程数据库的密码,

exec master.dbo.sp_addlinkedsrvlogin 'WINDDB210 ', 'false ',null, 'usrid', 'pwd'

--exec sp_dropserver 'wind_sql_db ', 'droplogins '

--添加 oracle
EXEC master.dbo.sp_addlinkedserver @server = N'QFII24', @srvproduct=N'oracle', @provider=N'OraOLEDB.Oracle', @datasrc=N'sourceOrcn'

EXEC master.dbo.sp_addlinkedsrvlogin @rmtsrvname=N'QFII24',@useself=N'False',@locallogin=NULL,@rmtuser=N'qfii',@rmtpassword='qfii'