Sqlserver
 sql >> Base de Dados >  >> RDS >> Sqlserver

Como posso criar script de backup do diagrama no SQL Server?


Encontrei uma solução razoável. O problema é que o Management Studio não pode exibir mais de 65.535 caracteres para dados não XML e não pode ser configurado para exibir mais de 65.535.

Veja o código para documentação :)

Roteiro de backup:
-- 1. Read from DB, using XML to workaround the 65535 character limit
declare @definition varbinary(max)
select @definition = definition from dbo.sysdiagrams where name = 'ReportingDBDiagram' 

select
    '0x' + cast('' as xml).value('xs:hexBinary(sql:variable("@definition") )', 'varchar(max)')
for xml path('')

-- 2. Open the result XML in Management Studio
-- 3. Copy the result
-- 4. Paste this in backup script for @definition variable

Script de restauração:
declare @definition varbinary(max)
set @definition = 0xD0CF -- Paste 0x0 value from Backup script

-- Create diagram using 'official' Stored Procedure
exec dbo.sp_creatediagram
    @diagramname = 'ReportingDBDiagramCopy',
    @owner_id = null,
    @version = 1,
    @definition = @definition