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)

AWE option no longer available in SQL Server 2012

Written by VidhyaSagar. Posted in DBA

AWE (Addressing Windows Extension) is one of the know server configuration to everyone. This parameter allows SQL Server to access large amount of memory in 32 bit machines. However MS decided to depreciate this configuration in SQL Server 2012 (Denali) . I hope this is the first step towards depreciating all 32 bit SQL server editions. So if you are using this setting in your current environment then you need to be careful while upgrading it to SQL Server 2012.

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

Script to get data file usage and autogrowth details

Written by VidhyaSagar. Posted in Scripts

I’ve wrote this script to get data file allocated and used space. In addition to this I’ve also added auto growth setting details for the data file. Written two scripts for fetching the details, first one will get you the details for one database and second one will give you the details for all the database data files.

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

January 2012 UG Scheduled

Written by admin. Posted in CSSUG

First of all Happy new year to everyone. Hope it should be a good start for everyone. We have planned user group meeting this month. Going to start with fresh look on SQL Server Denali aka SQL Server 2012. SQL Server 2012 is expected to reach market by this year, so this month topic is based on SQL Server 2012 only. Venue and topic details below

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)

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.