Plattenplatz MS SQL Server
USE abcdb DECLARE @table table(Id int IDENTITY(1,1), Name varchar(256)) INSERT INTO @table SELECT b.name + '.'+ a.name FROM sys.tables a INNER JOIN sys.schemas b ON a.schema_id = b.schema_id INSERT INTO…
USE abcdb DECLARE @table table(Id int IDENTITY(1,1), Name varchar(256)) INSERT INTO @table SELECT b.name + '.'+ a.name FROM sys.tables a INNER JOIN sys.schemas b ON a.schema_id = b.schema_id INSERT INTO…