Viewing 15 posts - 106 through 120 (of 269 total)
You will either need to install 2008 R2 and then attach the database to that, or get a script of all the objects and exported copies of all the data...
October 1, 2010 at 7:32 am
Thanks.. Is it possible to find the collation only for varchar fields???
Thank you so much again
September 7, 2010 at 10:03 am
Yes...
I created the user in the database, so the user has just the connect permission and no other permissions for this user..
Approle is granted control...
September 3, 2010 at 10:39 am
Thanks.
But when I create a user in the database and login as that user I'm able to run execute the sp_setapprole without granting execute on the application role.....
August 26, 2010 at 7:51 am
Sorry got the answer. I need to use substring(expression,start value,length) Thanks
August 25, 2010 at 8:51 am
Thank you so much..
I'm executing this as a dynamic sql in a procedure. I'm trying to see the dynamic build sql by 'print @sql' but when I create the...
August 25, 2010 at 7:39 am
Thanks.
DECLARE @cookie varbinary(8000);
EXEC sp_setapprole 'test', 'password1'
, @fCreateCookie = true, @cookie = @cookie OUTPUT;
Command(s) completed successfully.
Then when I execute sp_unsetapprole in the same...
August 18, 2010 at 7:51 am
Thanks Steve.
I use exec sp_setapprole to adopt the role in a session. Just wanting to know if there is a command to unset the approle from a session or...
August 18, 2010 at 7:29 am
Thanks. But, actually the application needs full control(alter,insert,delete,execute, select,view definition etc). of all the database objects (like tables,views,stored procedures,functions,triggers,symmetric keys etc).
And I get this for grant all 'The...
August 16, 2010 at 1:09 pm
When I run drop application role testrole, I get
Msg 15284, Level 16, State 1, Line 1
The database principal has granted or denied permissions to objects in the database...
August 6, 2010 at 7:36 am
Sorry, I found the problem. I need to use [UCX\user1]
August 6, 2010 at 7:08 am
I got it to work.. But I'm having a different problem now..
create APPLICATION ROLE test WITH PASSWORD ='password1' , DEFAULT_SCHEMA = dbo;
EXEC sp_setapprole 'test', 'password1'
I'm able to create...
August 4, 2010 at 6:38 am
Viewing 15 posts - 106 through 120 (of 269 total)