Viewing 15 posts - 5,971 through 5,985 (of 6,400 total)
Sorry Lowell is that to myself or to Halifaxdal?
December 8, 2011 at 9:43 am
halifaxdal (12/8/2011)
Msg 4606, Level 16, State 1, Line 1
Granted or revoked privilege EXECUTE is not compatible with object.
Can't...
December 8, 2011 at 9:37 am
you wont be able to see anything in the securables section unless you search for a type of database.
i just did the same as Lowell and looked at my test...
December 8, 2011 at 9:32 am
you could just do grant execute on database::databasename to rolename
if its going to be for all procs in that database forgot about that
edit
ah that works too Lowell, didnt know...
December 8, 2011 at 9:06 am
I would loop through the system tables
something like this
SELECT
'GRANT EXECUTE ON '+
obj.name +
' TO RoleName;'
FROM
sysobjects obj
WHERE
xtype = 'p'
Returns a single column, then its just copy and paste into the...
December 8, 2011 at 8:57 am
muhammadrazzaqpk-1032285 (12/8/2011)
This is first time, I have actually replied to any...
December 8, 2011 at 8:48 am
that would be due to picking up the mail settings.
you can set the mail settings in the SQL Agent alert system and click ok and think right thats working, but...
December 8, 2011 at 8:45 am
update table1 set col1 = ','+col1+','
December 8, 2011 at 6:33 am
did you lose an mdf/ndf or the ldf?
if it was mdf/ndf the only option you have is to restore from backup as you have physically lost data.
if it was the...
December 8, 2011 at 6:30 am
now it is starting to make more sence,
it may be that we are confusing SQL Mail with SQL Mail, as SQL Mail(xp_sendmail) and SQL Mail as the profile of DB...
December 8, 2011 at 4:40 am
please post the create table definition of staging.names and also sample data in the form of insert statments
please see the first link in my signature if you have any problems
December 8, 2011 at 4:34 am
did you backup and restore the encryption keys for SSRS as part of the upgrade?
December 8, 2011 at 4:30 am
GilaMonster (12/8/2011)
anthony.green (12/8/2011)
December 8, 2011 at 3:06 am
table variables are good for a very very small result sets
temp tables are good for all result set sizes
if you call your table #temp, then that table is only visable...
December 8, 2011 at 2:36 am
an option using find and replace in SSMS, would be to replace all ' with '+char(39)+' except for the first and last ' so that it looks something like this
create...
December 8, 2011 at 2:23 am
Viewing 15 posts - 5,971 through 5,985 (of 6,400 total)