Tuesday, 28 February 2012

How can I setup WDS in Windows Server 2008

Follow this Given below Link:- step by step

http://www.windows-noob.com/forums/index.php?/topic/446-how-can-i-setup-wds-in-windows-server-2008/

Wednesday, 22 February 2012

How to Give Read Permission for stored procedures in sql server


To grant permissions to specific stored procedure

GRANT VIEW DEFINITION ON YourStoredProcedureName TO [UserName]

To grant view definition on all the stored procedures in the database

--temporary table
DECLARE @tmpTable TABLE (
PK_ID INT IDENTITY (1, 1) NOT NULL PRIMARY KEY CLUSTERED,
[name] SYSNAME
)
--declare variables
DECLARE @name SYSNAME,
@RowCount INT,
@RecCount INT,
@strSQL VARCHAR(1000)
INSERT INTO @tmpTable ([name])
SELECT ROUTINE_SCHEMA+'.'+ROUTINE_NAME FROM INFORMATION_SCHEMA.ROUTINES
WHERE ROUTINE_TYPE = 'PROCEDURE' AND ROUTINE_NAME NOT LIKE 'dt_%'
-- counters for while
SET @RecCount = (SELECT count(*) FROM @tmpTable)
SET @RowCount = 1
WHILE (@RowCount < @RecCount + 1)
BEGIN
SELECT @name = [name]
FROM @tmpTable
WHERE PK_ID = @RowCount
SET @strSQL = N'Grant VIEW Definition on ' + rtrim(cast(@name AS VARCHAR(128))) + ' to [UserName]'
--Execute the Sql
EXEC(@strSQL)
--Decrement the counter
SET @RowCount = @RowCount + 1
--reset vars, just in case...
SET @name = null
END
SELECT * FROM @tmpTable