SQL Profiler: Filter By Database Name

Filter result by database name. Under Trace properties > Events Selection tab > select show all columns. Now under column filters, you should see the database name. Enter the database name for the Like section and you should see traces only for that database. Note: Make sure you show all columns and select database name.... » read more

Failed to find a valid digest in the ‘integrity’ attribute for resource in Blazor app

Error: Failed to find a valid digest in the 'integrity' attribute for resource xxxx with computed SHA-256 integrity xxxx. The resource has been blocked. Fix: Close Visual Studio 2022 Delete the obj and bin folders from all your projects. Start Visual Studio 2022 Rebuild solution. Try Publish again. Sources: https://stackoverflow.com/questions/69926878/failed-to-find-a-valid-digest-in-the-integrity-attribute-for-resource-in-blazo

Enable SSRS Email Subscription

Go to Report Server Configuration Manager and set the E-mail Settings. Restart SSRS services. On SSRS, you will now see an “Email” subscription option when you create new SSRS subscription.

Unable to add secondary server to AlwaysOn

Error: Failed to obtain cluster information. Either the specificed instance of SQL Server is not running on a Windows Server Failover Cluster (WSFC) node, or the user lacks sysadmin permissions on the SQL Server instance to obtain the cluster information. Resolution: Make sure you restart SQL Server services after setting the AlwaysOn setting. Error: SQL... » read more

SQL Server Permission to Backup Database

db_backupoperator – This role will allow the user to take backups of the database. Server Level – PUBLIC ROLEDatabase Level – DB_BACKUPOPERATOR This is the least privilege to take backups for a database.

Accounting Reconciliation

In accounting, reconciliation is the process of ensuring that two sets of records are in agreement. Reconciliation is used to ensure that the money leaving an account matches the actual money spent. This is done by making sure the balances match at the end of a particular accounting period.

Deploy SSIS Packages using .ISPAC File

Copy .ISPAC file to the server. Click on the .ISPAC file on the server, this should bring up the Integration Services Deployment Wizard. Select packages and deployment server to deploy SSIS packages. Note .ISPAC file is generated in the bin\Development folder of Visual Studio project. SSIS Package deployment using .ISPAC file seems to be the... » read more