SQL SERVER 数据库 字典 的SQL语句,七零八落,我在工作整理了一下思路,总结SQL代码如下,只在SQLSERVER2000中测试通过,希望对大家有帮助。 1. SqlServer 数据库 字典 --表结构." /> SQL SERVER 数据库 字典 的SQL语句,七零八落,我在工作整理了一下思路,总结SQL代码如下,只在SQLSERVER2000中测试通过,希望对大家有帮助。 1. SqlServer 数据库 字典 --表结构.">
Home Database Mysql Tutorial 3个SQL视图搞定所有SqlServer数据库字典

3个SQL视图搞定所有SqlServer数据库字典

Jun 07, 2016 pm 03:05 PM
sql sqlserver database view

网上有很多 数据库 专区 href="http://dev.yesky.com/devsjk" target=_blank>SQL SERVER 数据库 字典 的SQL语句,七零八落,我在工作整理了一下思路,总结SQL代码如下,只在SQLSERVER2000中测试通过,希望对大家有帮助。 1. SqlServer 数据库 字典 --表结构.

  网上有很多数据库专区 href="http://dev.yesky.com/devsjk" target=_blank>SQL SERVER数据库字典的SQL语句,七零八落,我在工作整理了一下思路,总结SQL代码如下,只在SQLSERVER2000中测试通过,希望对大家有帮助。

  1. SqlServer数据库字典--表结构.sql

以下是引用片段:
  SELECT TOP 100 PERCENT --a.id,
   CASE WHEN a.colorder = 1 THEN d.name ELSE '' END AS 表名,
   CASE WHEN a.colorder = 1 THEN isnull(f.value, '') ELSE '' END AS 表说明,
   a.colorder AS 字段序号, a.name AS 字段名, CASE WHEN COLUMNPROPERTY(a.id,
   a.name, 'IsIdentity') = 1 THEN '√' ELSE '' END AS 标识,
   CASE WHEN EXISTS
   (SELECT 1
   FROM dbo.sysindexes si INNER JOIN
   dbo.sysindexkeys sik ON si.id = sik.id AND si.indid = sik.indid INNER JOIN
   dbo.syscolumns sc ON sc.id = sik.id AND sc.colid = sik.colid INNER JOIN
   dbo.sysobjects so ON so.name = so.name AND so.xtype = 'PK'
   WHERE sc.id = a.id AND sc.colid = a.colid) THEN '√' ELSE '' END AS 主键,
   b.name AS 类型, a.length AS 长度, COLUMNPROPERTY(a.id, a.name, 'PRECISION')
   AS 精度, ISNULL(COLUMNPROPERTY(a.id, a.name, 'Scale'), 0) AS 小数位数,
   CASE WHEN a.isnullable = 1 THEN '√' ELSE '' END AS 允许空, ISNULL(e.text, '')
   AS 默认值, ISNULL(g.[value], '') AS 字段说明, d.crdate AS 创建时间,
   CASE WHEN a.colorder = 1 THEN d.refdate ELSE NULL END AS 更改时间
  FROM dbo.syscolumns a LEFT OUTER JOIN
   dbo.systypes b ON a.xtype = b.xusertype INNER JOIN
   dbo.sysobjects d ON a.id = d.id AND d.xtype = 'U' AND
   d.status >= 0 LEFT OUTER JOIN
   dbo.syscomments e ON a.cdefault = e.id LEFT OUTER JOIN
   dbo.sysproperties g ON a.id = g.id AND a.colid = g.smallid LEFT OUTER JOIN
   dbo.sysproperties f ON d.id = f.id AND f.smallid = 0
  ORDER BY d.name, a.colorder

  2. SqlServer数据库字典--索引.sql

以下是引用片段:
  SELECT TOP 100 PERCENT --a.id,
   CASE WHEN b.keyno = 1 THEN c.name ELSE '' END AS 表名,
   CASE WHEN b.keyno = 1 THEN a.name ELSE '' END AS 索引名称, d.name AS 列名,
   b.keyno AS 索引顺序, CASE indexkey_property(c.id, b.indid, b.keyno, 'isdescending')
   WHEN 1 THEN '降序' WHEN 0 THEN '升序' END AS 排序, CASE WHEN p.id IS NULL
   THEN '' ELSE '√' END AS 主键, CASE INDEXPROPERTY(c.id, a.name, 'IsClustered')
   WHEN 1 THEN '√' WHEN 0 THEN '' END AS 聚集, CASE INDEXPROPERTY(c.id,
   a.name, 'IsUnique') WHEN 1 THEN '√' WHEN 0 THEN '' END AS 唯一,
   CASE WHEN e.id IS NULL THEN '' ELSE '√' END AS 唯一约束,
   a.OrigFillFactor AS 填充因子, c.crdate AS 创建时间, c.refdate AS 更改时间
  FROM dbo.sysindexes a INNER JOIN
   dbo.sysindexkeys b ON a.id = b.id AND a.indid = b.indid INNER JOIN
   dbo.syscolumns d ON b.id = d.id AND b.colid = d.colid INNER JOIN
   dbo.sysobjects c ON a.id = c.id AND c.xtype = 'U' LEFT OUTER JOIN
   dbo.sysobjects e ON e.name = a.name AND e.xtype = 'UQ' LEFT OUTER JOIN
   dbo.sysobjects p ON p.name = a.name AND p.xtype = 'PK'
  WHERE (OBJECTPROPERTY(a.id, N'IsUserTable') = 1) AND (OBJECTPROPERTY(a.id,
   N'IsMSShipped') = 0) AND (INDEXPROPERTY(a.id, a.name, 'IsAutoStatistics') = 0)
  ORDER BY c.name, a.name, b.keyno

  3. SqlServer数据库字典--主键.外键.约束.视图.函数.存储过程.触发器.sql

以下是引用片段:
  SELECT DISTINCT
   TOP 100 PERCENT o.xtype,
   CASE o.xtype WHEN 'X' THEN '扩展存储过程' WHEN 'TR' THEN '触发器' WHEN 'PK' THEN
   '主键' WHEN 'F' THEN '外键' WHEN 'C' THEN '约束' WHEN 'V' THEN '视图' WHEN 'FN'
   THEN '函数-标量' WHEN 'IF' THEN '函数-内嵌' WHEN 'TF' THEN '函数-表值' ELSE '存储过程'
   END AS 类型, o.name AS 对象名, o.crdate AS 创建时间, o.refdate AS 更改时间,
   c.text AS 声明语句
  FROM dbo.sysobjects o LEFT OUTER JOIN
   dbo.syscomments c ON o.id = c.id
  WHERE (o.xtype IN ('X', 'TR', 'C', 'V', 'F', 'IF', 'TF', 'FN', 'P', 'PK')) AND
   (OBJECTPROPERTY(o.id, N'IsMSShipped') = 0)
  ORDER BY CASE o.xtype WHEN 'X' THEN '扩展存储过程' WHEN 'TR' THEN '触发器' WHEN
   'PK' THEN '主键' WHEN 'F' THEN '外键' WHEN 'C' THEN '约束' WHEN 'V' THEN '视图'
   WHEN 'FN' THEN '函数-标量' WHEN 'IF' THEN '函数-内嵌' WHEN 'TF' THEN '函数-表值'
   ELSE '存储过程' END DESC
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1664
14
PHP Tutorial
1267
29
C# Tutorial
1239
24
iOS 18 adds a new 'Recovered' album function to retrieve lost or damaged photos iOS 18 adds a new 'Recovered' album function to retrieve lost or damaged photos Jul 18, 2024 am 05:48 AM

Apple's latest releases of iOS18, iPadOS18 and macOS Sequoia systems have added an important feature to the Photos application, designed to help users easily recover photos and videos lost or damaged due to various reasons. The new feature introduces an album called "Recovered" in the Tools section of the Photos app that will automatically appear when a user has pictures or videos on their device that are not part of their photo library. The emergence of the "Recovered" album provides a solution for photos and videos lost due to database corruption, the camera application not saving to the photo library correctly, or a third-party application managing the photo library. Users only need a few simple steps

Detailed tutorial on establishing a database connection using MySQLi in PHP Detailed tutorial on establishing a database connection using MySQLi in PHP Jun 04, 2024 pm 01:42 PM

How to use MySQLi to establish a database connection in PHP: Include MySQLi extension (require_once) Create connection function (functionconnect_to_db) Call connection function ($conn=connect_to_db()) Execute query ($result=$conn->query()) Close connection ( $conn->close())

How to handle database connection errors in PHP How to handle database connection errors in PHP Jun 05, 2024 pm 02:16 PM

To handle database connection errors in PHP, you can use the following steps: Use mysqli_connect_errno() to obtain the error code. Use mysqli_connect_error() to get the error message. By capturing and logging these error messages, database connection issues can be easily identified and resolved, ensuring the smooth running of your application.

How to use database callback functions in Golang? How to use database callback functions in Golang? Jun 03, 2024 pm 02:20 PM

Using the database callback function in Golang can achieve: executing custom code after the specified database operation is completed. Add custom behavior through separate functions without writing additional code. Callback functions are available for insert, update, delete, and query operations. You must use the sql.Exec, sql.QueryRow, or sql.Query function to use the callback function.

How to save JSON data to database in Golang? How to save JSON data to database in Golang? Jun 06, 2024 am 11:24 AM

JSON data can be saved into a MySQL database by using the gjson library or the json.Unmarshal function. The gjson library provides convenience methods to parse JSON fields, and the json.Unmarshal function requires a target type pointer to unmarshal JSON data. Both methods require preparing SQL statements and performing insert operations to persist the data into the database.

MySQL: Simple Concepts for Easy Learning MySQL: Simple Concepts for Easy Learning Apr 10, 2025 am 09:29 AM

MySQL is an open source relational database management system. 1) Create database and tables: Use the CREATEDATABASE and CREATETABLE commands. 2) Basic operations: INSERT, UPDATE, DELETE and SELECT. 3) Advanced operations: JOIN, subquery and transaction processing. 4) Debugging skills: Check syntax, data type and permissions. 5) Optimization suggestions: Use indexes, avoid SELECT* and use transactions.

PHP Database Connection Pitfalls: Avoid Common Mistakes and Misunderstandings PHP Database Connection Pitfalls: Avoid Common Mistakes and Misunderstandings Jun 05, 2024 pm 10:21 PM

To avoid PHP database connection errors, follow best practices: check for connection errors and match variable names with credentials. Use secure storage or environment variables to avoid hardcoding credentials. Close the connection after use to prevent SQL injection and use prepared statements or bound parameters.

MySQL: An Introduction to the World's Most Popular Database MySQL: An Introduction to the World's Most Popular Database Apr 12, 2025 am 12:18 AM

MySQL is an open source relational database management system, mainly used to store and retrieve data quickly and reliably. Its working principle includes client requests, query resolution, execution of queries and return results. Examples of usage include creating tables, inserting and querying data, and advanced features such as JOIN operations. Common errors involve SQL syntax, data types, and permissions, and optimization suggestions include the use of indexes, optimized queries, and partitioning of tables.

See all articles