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

推荐订阅源

Forbes - Security
Forbes - Security
GbyAI
GbyAI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
S
SegmentFault 最新的问题
Y
Y Combinator Blog
Recorded Future
Recorded Future
博客园 - Franky
I
InfoQ
T
The Blog of Author Tim Ferriss
Recent Announcements
Recent Announcements
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园_首页
阮一峰的网络日志
阮一峰的网络日志
T
Tailwind CSS Blog
Cyberwarzone
Cyberwarzone
The Register - Security
The Register - Security
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
雷峰网
雷峰网
P
Palo Alto Networks Blog
G
GRAHAM CLULEY
Cloudbric
Cloudbric
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
MongoDB | Blog
MongoDB | Blog
F
Full Disclosure
Google DeepMind News
Google DeepMind News
Recent Commits to openclaw:main
Recent Commits to openclaw:main
C
Check Point Blog
爱范儿
爱范儿
The GitHub Blog
The GitHub Blog
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
W
WeLiveSecurity
T
Threat Research - Cisco Blogs
U
Unit 42
N
Netflix TechBlog - Medium
The Cloudflare Blog
Spread Privacy
Spread Privacy
Microsoft Azure Blog
Microsoft Azure Blog
美团技术团队
T
Troy Hunt's Blog
Engineering at Meta
Engineering at Meta
H
Heimdal Security Blog
TaoSecurity Blog
TaoSecurity Blog
C
Cybersecurity and Infrastructure Security Agency CISA
T
Tenable Blog
B
Blog
S
Securelist
H
Hacker News: Front Page
Google Online Security Blog
Google Online Security Blog
G
Google Developers Blog

博客园 - sunwugang

026.数据库Sqlserver解决远程连接问题 C# SqlSuger C# DataTableToList 批处理自动删除指定文件夹中的文件夹以及文件 C# 开机自启动批处理bat文件 C# 将exe可执行程序设置为开机自启动 025.数据库下载&win10安装注意事项 C# Json操作 C# TextBox 新增文本并定位光标 C# base64转pdf + 上传至指定url C# 猜字谜 C# 闲来笔记 StringHelper--字符串左右添加指定字符 Vue学习笔记72--element ui Vue学习笔记71--histroy模式+hash模式 Vue学习笔记70--全局前置-路由守卫 + 后置路由守卫 + 独享守卫 + 组件内守卫 Vue学习笔记69--activated + deactivated Vue学习笔记68--缓存路由组件 Vue学习笔记67--编程式路由导航
024 数据库信息查询 + 连接串配置
sunwugang · 2024-11-11 · via 博客园 - sunwugang

SELECT @@VERSION AS '版本信息',
SERVERPROPERTY('Edition') AS '版本',
SERVERPROPERTY('LicenseType') AS '许可类型',
SERVERPROPERTY('ProductVersion') AS '产品版本号',
SERVERPROPERTY('LicenseType') AS '许可类型',
SERVERPROPERTY('ProductLevel') AS '产品级别',
SERVERPROPERTY('EngineEdition') AS '引擎版本',
SERVERPROPERTY('IsClustered') AS '是否集群',
SERVERPROPERTY('IsHadrEnabled') AS '是否启用HADR',
SERVERPROPERTY('IsPolyBaseInstalled') AS '是否安装PolyBase'

连接串配置:

Server=<服务器地址>\<实例名称>;Database=<数据库名称>;User Id=<用户名>;Password=<密码>;

配置示例:

  1. 默认实例:<add name="RMPASConn" connectionString="server=121.89.209.43;uid=sa;pwd=ZBzb9527;database=SD_shude"/>
  2. 指定实例:<add name="RMPASConn" connectionString="server=121.89.209.43\SQLEXPRESS实例名称;uid=sa;pwd=ZBzb9527;database=SD_shude"/>
  3. 指定实例:<add name="RMPASConn" connectionString="server=.\SQLEXPRESS实例名称;uid=sa;pwd=ZBzb9527;database=SD_shude"/>