To install SharePoint 2010 on Windows Server 2008 R2 we need to configure server with the following roles and features. Add Roles: Application Server & Web Server To install SharePoint 2010 we need to configure server with the following roles and features. Add Roles: Application Server & Web Server Click “Server Manager” Click “Roles” Click
Month: June 2013
Get Data Length of a table in SQL Server
Get Column Name, Data Type and Data Length of a table in sql server. Here hrm_employee is a table name. SELECT COLUMN_NAME ‘Column Name’, DATA_TYPE ‘Data Type’, CHARACTER_MAXIMUM_LENGTH ‘Maximum Length’ FROM information_schema.columns WHERE TABLE_NAME = ‘hrm_employee’