Author

PowerApps Community Plan

https://powerapps.microsoft.com/en-us/communityplan/ Get a free environment for individual use Learn and develop your PowerApps and Microsoft Flow skills Explore and create in a full-featured environment for development Build apps on a single, extensible view of your data with the Common Data Service What’s included? You get a free environment for individual use with functionality including premium... » read more

Using Query Execution Plans

One useful tool that SQL Server offers is the ability to see query execution plans. An execution plan shows you how SQL Server breaks down a query and also identified where issues might exist within the execution plan. Once you have identified statements that take a long time to complete, you can then look at... » read more

Database Caching

SQL Server does not have a “results cache” and the second execution is not “practically free.”SQL Server does have a “buffer cache” and the second execution is “faster, but not free.” The SQL Server buffer cache holds data pages in memory, in the exact form that they reside on disk. The second execution will not have to perform... » read more

Database Replication

SQL Server replication is a technology for copying and distributing data and database objects from one database to another and then synchronizing between databases to maintain consistency and integrity of the data. Article/Publications An article is the basic unit of SQL Server Replication. An article can consist of tables, stored procedures, and views. A Publication... » read more

Transactional Logs and Disk Space

When using the full recovery model backup option, transactional logs will be generated every time there is a transaction being made. The transaction log will keep accumulate until a full, differential, transaction log backup has been made. Only then will the logs be cleared up. In databases where there are high transaction being made, the... » read more

Creating Database Indexes

Indexes are used to speed-up query processes in a database. They are similar to an index for a book. If you need to go to a particular chapter you can go to the index, find the page number of the chapter and go directly to the page. Database index works the same way. If you... » read more

Microsoft Power Platform

Power BI Power BI is a business analytics service provided by Microsoft. It provides interactive visualizations with self-service business intelligence capabilities, where end users can create reports and dashboards by themselves, without having to depend on information technology staff or database administrators. Wikipedia Make sense of your data through interactive, real-time dashboards. PowerApps Build apps... » read more

Tableau

Tableau is business intelligence software that helps people see and understand their data. https://www.tableau.com/ https://www.tableau.com/developer

Fine Tuning Stored Procedures

1. Use SET NOCOUNT ON SQL Server return information messages when running statements thus increasing network traffic. These messages can be suppressed by setting the NOCOUNT ON to decrease network traffic. 2. Use fully qualified procedure name A fully qualified object name is server.database.schema.objectname. SQL Server can swiftly find the complied plan instead of looking... » read more

SSRS vs SSIS vs SSAS

SSRS, SSIS, and SSAS are all products/services offered by Microsoft. Different services comes in different editions. SQL Server Reporting Services (SSRS) Provide a framework of reporting mechanisms such as the Report Builder, Report Designer, Report Manager, and Report Server that work together through a web interface to enable the development of interactive reporting solutions. Report... » read more