gpt4 book ai didi

sql-server - 修改 SQL Server 架构集合

转载 作者:数据小太阳 更新时间:2023-10-29 01:40:18 24 4
gpt4 key购买 nike

SQL Server XML Schema Collection 是一个有趣的概念,我发现它在设计动态数据内容时非常有用。然而,当我通过实现模式集合的方式工作时,我发现维护它们非常困难。

模式集合 DDL 仅允许对现有模式创建和更改/添加节点。

CREATE XML SCHEMA COLLECTION [ <relational_schema>. ]sql_identifier AS 'XSD Content'
ALTER XML SCHEMA COLLECTION [ <relational_schema>. ]sql_identifier ADD 'Schema Component'

当您想从架构中删除任何节点时,您必须在 DDL 之后发布。

  1. 如果将该模式集合分配给表列,则必须更改表以从该列中删除模式集合关联
  2. 删除架构集合对象
  3. 重新创建架构集合
  4. 更改表列以将架构集合重新关联到该列。

当涉及到一个集合中的 100 多个方案时,这很痛苦。如果有的话,您还必须重新重新创建 XML 索引。

有什么解决方案、建议和技巧可以使这个模式集合对象编辑过程更容易吗?

最佳答案

我同意 David 的观点,即 XML 并不是我们被告知的 Elixir ,但在某些情况下,它要么是不可避免的,要么是完成这项工作的最佳工具。架构维护虽然很痛苦。我只有几个要处理,但仍然浪费时间。

此脚本可能会有所帮助。它会生成表格 drops 并添加您需要的内容。它需要修改以包含 UDF 或其他可能引用 XML 模式的对象。要生成添加架构语句,我建议您使用 Mgt Studio 任务菜单中的“生成脚本...”功能并将它们保存到脚本的第 2 步。

SET NOCOUNT ON

/*
1) Save cols to table var
*/
DECLARE @xmlCols TABLE (
numID INTEGER IDENTITY(1,1),
TBL nvarchar(1024),
COL nvarchar(1024),
SCH nvarchar(1024)
);

insert into @xmlCols (TBL,COL,SCH)
SELECT DISTINCT OBJECT_NAME(colm.object_id) AS 'TABLE', colm.name AS 'COLUMN', coll.name AS 'Schema'
FROM sys.columns colm
inner JOIN sys.xml_schema_collections coll
ON colm.xml_collection_id = coll.xml_collection_id
ORDER BY OBJECT_NAME(colm.object_id), colm.name

DECLARE @lastRow as int
DECLARE @currentRow as int
DECLARE @dbName as varchar(1024)
DECLARE @tableName as varchar(1024)
DECLARE @colName as varchar(1024)
DECLARE @schemaName as varchar(1024)
SET @lastRow = @@ROWCOUNT
SET @currentRow = @lastRow
SET @dbName = 'dbNAme'

print ''
print '--!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!'
print '--!!!!! Scipt Schemas and Save in Mgt Studio !!!!'
print '--!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!'
print ''


print ''
print '--!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!'
print '--!!!!! Omit Schemas from COls !!!!'
print '--!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!'
print ''
--omit the Schema for each column
WHILE @currentRow <> 0
BEGIN
SELECT @tableName=TBL, @colName=COL, @schemaName=SCH from @xmlCols WHERE numID = @currentRow

print N'ALTER TABLE [' + @tableName + N'] ALTER COLUMN ['+ @colName + N'] XML'

set @currentRow = @currentRow -1
END

print ''
print '--!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!'
print '--!!!!! drop your xml schema(s) !!!!'
print '--!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!'
print ''
SET @currentRow = @lastRow
WHILE @currentRow <> 0
BEGIN
SELECT @tableName=TBL, @colName=COL, @schemaName=SCH from @xmlCols WHERE numID = @currentRow

print N'DROP XML SCHEMA COLLECTION [dbo].['+@schemaName+']'

set @currentRow = @currentRow -1
END

print ''
print '--!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!'
print '--!!!!! CLean your Tables !!!!'
print '--!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!'
print ''

--clean up the tables
SET @currentRow = @lastRow
WHILE @currentRow <> 0
BEGIN
SELECT @tableName=TBL, @colName=COL, @schemaName=SCH from @xmlCols WHERE numID = @currentRow

print N'DBCC CleanTable (''' + @dbName + N''', ''' + @tableName + N''', 0)'

set @currentRow = @currentRow -1
END

print ''
print '--!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!'
print '--!!!!! Run XML Schema Scripts !!!!'
print '--!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!'
print ''
SET @currentRow = @lastRow
WHILE @currentRow <> 0
BEGIN
SELECT @tableName=TBL, @colName=COL, @schemaName=SCH from @xmlCols WHERE numID = @currentRow

print N'ALTER TABLE [' + @tableName + N'] ALTER COLUMN ['+ @colName + N'] XML('+ @schemaName + N')'''

set @currentRow = @currentRow -1
END

希望对您有所帮助。

关于sql-server - 修改 SQL Server 架构集合,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2246146/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com