Populate dummy records in SQL Server
Last day, I was playing with paging in SQL Server and had to create some test data to test the same. Here goes the script to generate test data.DECLARE @UserTable TABLE (Id int, Name nvarchar(150))...
View ArticlePaging re-imagined in SQL Server
When we have huge records in database, it is always wise to implement paging instead of querying all the data at once. Gone are the days were we wrote long line of code to implement paging. With SQL...
View ArticlePaging re-imagined in SQL Server
When we have huge records in database, it is always wise to implement paging instead of querying all the data at once. Gone are the days were we wrote long line of code to implement paging. With SQL...
View ArticleMixed Reality Techday event at Kochi
It's always great when you work with state-of-the-art technology. HoloLens is one such device. A unique, one of it's kind device. And more greatful when you share the knowledge with the community and...
View ArticleFix: HTML5 Video not playing when deployed to azure
The HTML5 video added in the webpage was playbacking successfully in my developer environment. But, why deployed to client's Azure web app it was not playing at all. I suspected for any script errors...
View Article