MS SQL, MSBI Setup

Operation ‘Create’ on object ‘CatalogFolder [@Name=’Demo’]’ failed during execution

When you are create the new folder under SSIS Package Database you will get some permission error, SQL server not allow you create the new project folder.

Below is the Error Message.

TITLE: Microsoft SQL Server Management Studio
------------------------------

Operation 'Create' on object 'CatalogFolder[@Name='Demo']' failed during execution. (Microsoft.SqlServer.Management.Sdk.Sfc)

For help, click: https://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&ProdVer=16.100.46437.65+(SMO-master-A)&LinkId=20476

------------------------------
ADDITIONAL INFORMATION:

An exception occurred while executing a Transact-SQL statement or batch. (Microsoft.SqlServer.ConnectionInfo)

------------------------------

An error occurred in the Microsoft .NET Framework while trying to load assembly id 65536. The server may be running out of resources, or the assembly may not be trusted with PERMISSION_SET = EXTERNAL_ACCESS or UNSAFE. Run the query again, or check documentation to see how to solve the assembly trust issues. For more information about this error: 
System.IO.FileLoadException: Could not load file or assembly 'microsoft.sqlserver.integrationservices.server, Version=13.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91' or one of its dependencies. An error relating to security occurred. (Exception from HRESULT: 0x8013150A)
System.IO.FileLoadException: 
   at System.Reflection.RuntimeAssembly._nLoad(AssemblyName fileName, String codeBase, Evidence assemblySecurity, RuntimeAssembly locationHint, StackCrawlMark& stackMark, IntPtr pPrivHostBinder, Boolean throwOnFileNotFound, Boolean forIntrospection, Boolean suppressSecurityChecks)
   at System.Reflection.RuntimeAssembly.InternalLoadAssemblyName(AssemblyName assemblyRef, Evidence assemblySecurity, RuntimeAssembly reqAssembly, StackCrawlMark& stackMark, IntPtr pPrivHostBinder, Boolean throwOnFileNotFound, Boolean forIntrospection, Boolean suppressSecurityChecks)
   at System.Reflection.RuntimeAssembly.InternalLoad(String assemblyString, Evidence assemblySecurity, StackCrawlMark& stackMark, IntPtr pPrivHostBinder, Boolean forIntrospection)
   at System.Reflection.RuntimeAssembly.InternalLoad(String assemblyString, Evidence assemblySecurity, StackCrawlMark& stackMark, Boolean forIntrospection)
   at System.Reflection.Assembly.Load(String assemblyString)

Cannot find the folder 'Demo' because it does not exist or you do not have sufficient permissions. (Microsoft SQL Server, Error: 10314)

For help, click: https://docs.microsoft.com/sql/relational-databases/errors-events/mssqlserver-10314-database-engine-error

------------------------------
BUTTONS:

OK
------------------------------

It’s all because you don’t have sufficient permission to create the folder, so you need to change the SSISDB permission setting. Please use the below SQL comment to change the SSSIDB permission and then you can able to create new folders.

Now we can proceed to create Folder …

Leave a Reply

Prabhakaran Jayaraman