Monthly Archives: March 2019

Azure Data Studio vs SQL Server Management Studio part 3

This post continue to look at the differences between Azure Data Studio and SQL Server Management Studio. This post is focus on Security. In SSMS you can find a dedicated Security node. In ADS is the same, it has a … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, Data Platform | Tagged , , | 1 Comment

SQL Server query for the most used Tables and Index

This short post consist of the SQL Server Query to find out most used Tables and most used Indexes. — most use table SELECT db_name(ius.database_id) AS DatabaseName,t.NAME AS TableName,SUM(ius.user_seeks + ius.user_scans + ius.user_lookups) AS NbrTimesAccessed FROM sys.dm_db_index_usage_stats ius INNER JOIN … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, Data Platform | Tagged , | Leave a comment

Machine Learning Service in SQL Server 2017

This post shows you how to start with Machine Learning Service in SQL Server 2017. One of the feature added to SQL Server 2017 is machine learning. There are two language of choices R and Python. I am a R … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, Data Platform | Tagged , , , | 1 Comment

Comparing the differences between two folders in Windows

This post shows you one of the way to compare between two folders. I have 2 folders, I didn’t want to update the file that already existed but finding the files that did not exist as one side or another. … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, Operating System | Tagged | Leave a comment

Azure Data Studio vs SQL Server Management Studio part 2

This post continue to look at the differences between Azure Data Studio and SQL Server Management Studio. When you want to change the connection in query pane of SSMS you need to right click then choose Connection. This is more … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, Data Platform | Tagged , | 1 Comment

Azure Data Studio vs SQL Server Management Studio part 1

This post shows you some differences between Azure Data Studio and SQL Server Management Studio. From the market you will hear ADS is going to replace SSMS, maybe not now because many features in SSMS is not available in ADS … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, Data Platform | Tagged | 1 Comment

SharePoint Approval every time user edit the document in Document Library

This short post shows you where to set the versioning so that the user must check out the document if they want to edit. Once they check in then they document needs to be approved. Go to Library Settings on … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, sharepoint | Tagged , | Leave a comment

ORA-01847 day of month must be between 1 and last day of month

This post is just showing you the workaround and not really a full solution If you still having what we are running Oracle 9i. You may have this below issue when you are connecting through Oracle 11g client using ODBC. … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, Data Platform, Oracle | Tagged | Leave a comment

AdventureWorks database sample 2012 to 2017

This post just give you links to the most desirable database samples, AdventureWorks. The official Microsoft link is this one. The link will be out of my control because it have been keep changing over the years. https://github.com/Microsoft/sql-server-samples/releases/tag/adventureworks The unofficial … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, Data Platform | Tagged , , , , | 1 Comment

ASP.NET Web Forms resources

This post shows you where can you still get the ASP.NET Web Forms resources such as tutorials and samples. Especially the samples that can access to MS SQL Server database for production. Despite Microsoft keep wanting people to develop the … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, Data Platform | Tagged , , , | Leave a comment