What’s FileTable – Part 1

Written by VidhyaSagar. Posted in General

Filetable is a new feature in SQL Server 2012 which allows application to access files that’s stored in disk via SQL Server, that’s the main function. In other words you can store files and directories to windows NTFS folders and these files can be accessed non transactional from application like regular file system. FileTables act as a normal table however it requires FILESTREAM to be enabled. You can query & update this table to get information about the directories and files stored in the location and also it’s hierarchy.

VN:F [1.9.14_1148]
Rating: 0.0/5 (0 votes cast)
VN:F [1.9.14_1148]
Rating: 0 (from 0 votes)

Pagination in Result Set – OFFSET \ FETCH – SQL Server 2012

Written by VidhyaSagar. Posted in General

Today I’m going to discuss another new feature in SQL Server 2012. Pagination in result set is a new feature in SQL Server 2012. ORDER BY clause in SQL Server 2012 is enhanced with additional parameters that is OFFSET and FETCH. Using this parameter allows you to fetch data from a particular page from result set, you can also specify how many rows to retrieve. However an ORDER BY clause is compulsory to utilize this feature.

VN:F [1.9.14_1148]
Rating: 0.0/5 (0 votes cast)
VN:F [1.9.14_1148]
Rating: 0 (from 0 votes)

SPARSE Column

Written by VidhyaSagar. Posted in General

Happy New Year My dear Friends Smile

It’s  been a long this feature has been released however I just got an opportunity to check it out. This feature is released in SQL Server 2008 version. Sparse columns are normal columns which will store NULL values in a optimized storage which means no storage space is taken when you store NULL values to that column. Happy !! there is some overhead for storing non NULL values to this columns, it will take some more space for non NULL values.

VN:F [1.9.14_1148]
Rating: 0.0/5 (0 votes cast)
VN:F [1.9.14_1148]
Rating: 0 (from 0 votes)

Contained Database – SQL Server 2012

Written by VidhyaSagar. Posted in General

In SQL Server Denali we have new feature called contained database that will let you move your database easily. Understood? Whatever I said is a very simple meaning of contained database, let’s see what it’s going to do and how it’s going to help us.

VN:F [1.9.14_1148]
Rating: 5.0/5 (2 votes cast)
VN:F [1.9.14_1148]
Rating: 0 (from 0 votes)

Conversion Functions – SQL Server Denali

Written by VidhyaSagar. Posted in General

Microsoft released 3 new conversion function in SQL Server Denali. In which two functions will tell you whether the action is possible the third one will give you the result. Below are the three  conversion functions

  • Try_Convert
  • Parse
  • Try_Parse
VN:F [1.9.14_1148]
Rating: 5.0/5 (2 votes cast)
VN:F [1.9.14_1148]
Rating: 0 (from 0 votes)

Recent Comments

Praveen

|

Hi Sagar, Your script is working great. Thanks ton

DotNetShoutout

|

SQL-Articles » Script to get data file usage and autogrowth details…

Thank you for submitting this cool story – Trackback from DotNetShoutout…

VidhyaSagar

|

Saeed,
I don’t think so you can stop it in SMO, instead you need to turn off password policy for that login

VidhyaSagar

|

Thanks Ashish, I’ve updated the script.