Viewing 15 posts - 16 through 30 (of 40 total)
wat do u think which query will give better performance.
February 21, 2006 at 11:47 pm
does it mean that we can not schedule a stored procedure that needs parameters ?
If the answer is yes, then i think we can use a temp table with columns...
February 21, 2006 at 2:36 am
Some one can please help me, its very urgent.
February 19, 2006 at 11:38 pm
Actually there are different Procedures with different number and type of parameters with different execution intervals.
For example consider following procedure.......I want to execute this procedure after every hour.
CREATE
February 16, 2006 at 11:37 pm
Sorry, I havent use Service Broker before....can u plz explain abt the process
February 16, 2006 at 4:18 am
Yah i also thought that it will be depending on type of function....but i could not find how exactly it differentiates....coz more or less all the functions were same.
November 2, 2005 at 1:26 am
Yes i do get the error e.g
Suppose in the EM GUI, UDF 'MyFunction' has ONLY SELECT Option available for Grant
and if i try to execute "GRANT EXECUTE ON MyFunction TO MYUser"
it...
November 1, 2005 at 11:10 pm
Actually the problem is....when i go to properties of the users of my DB.....there is a tab of Permissions....that shows all the objects of the DB with the rights (SELECT,INSERT,UPDATE,DELETE,EXECUTE,DRI)...
November 1, 2005 at 10:05 pm
Thanks all.....specially alzdba.....
one more thing i want to know is......
In my DBs Different USER DEFINED FUNCTIONS have different privileges....i.e
Some have SELECT
Some have EXECUTE
Some have SELECT, INSERT, UPDATE, DELETE
Some have...
November 1, 2005 at 12:22 am
Thanks all.....specially alzdba.....
one more thing i want to know is......
In my DBs Different USER DEFINED FUNCTIONS have different privileges....i.e
Some have SELECT
Some have EXECUTE
Some have SELECT, INSERT, UPDATE, DELETE
Some have...
November 1, 2005 at 12:21 am
This is for KH
exec master..xp_execresultset N'select ''GRANT ALL ON '' + name + '' TO test'' from sysobjects where type in (''U'', ''V'')', 'ADL'
HERE 'ADL' is my DB Name and...
October 31, 2005 at 6:05 am
Suppose my DB name is MYDB.....
Can u plz explain the FROM and WHERE clauses......i.e
from [INFORMATION_SCHEMA].[TABLES]
where [TABLE_SCHEMA] = 'xxx'
AND
from [INFORMATION_SCHEMA].[ROUTINES]
where [SPECIFIC_SCHEMA] = 'xxx'
October 31, 2005 at 4:12 am
KH i am getting the following error when i execute the above statement...isnt it strange
Incorrect syntax near 'Stored'
October 31, 2005 at 3:37 am
Thanks for replying.....but sorry to tell u that i knew this script....wat i want to know is .....is there any single command that can grant ALL to all the tables...
October 31, 2005 at 2:59 am
thanks every one who replied.....
My solution works fine after the change suggested by Kenneth. i.e EXEC('Kill ' + @spid)
Now about the system spids.....they will not be returned by the cursor...coz...
October 31, 2005 at 2:01 am
Viewing 15 posts - 16 through 30 (of 40 total)