Viewing 15 posts - 301 through 315 (of 429 total)
GilaMonster (9/25/2012)
You're impersonating a database user. You are not impersonating the sysadmin login that has implicit permissions in all DBs.
I knew I must have been missing something.
Thank you!!!
September 25, 2012 at 12:26 pm
Hmm, actually I had a mapping in place.
With the explicit mapping removed, it doesn't work for me even within the same database.
-- Logged in as sa
USE master;
SELECT COUNT(*) FROM master.dbo.mytesttable;
EXECUTE...
September 25, 2012 at 12:15 pm
GilaMonster (9/25/2012)
sestell1 (9/25/2012)
September 25, 2012 at 12:05 pm
opc.three (9/25/2012)
sestell1 (9/25/2012)
opc.three (9/25/2012)
GilaMonster (9/25/2012)
Any member of the sysadmin role has all permissions across the instance, is implicitly db_owner of all databases and cannot be denied anything.
To be clear sa...
September 25, 2012 at 11:51 am
It's not an option you can change in the editor. You have to set it from the task properties.
September 25, 2012 at 9:30 am
Interesting! I have no idea, as I've never seen anyone try to do this before. I'd guess if things like the job agent work alright then it should...
September 25, 2012 at 9:05 am
opc.three (9/25/2012)
GilaMonster (9/25/2012)
Any member of the sysadmin role has all permissions across the instance, is implicitly db_owner of all databases and cannot be denied anything.
To be clear sa is implicitly...
September 25, 2012 at 8:31 am
Try going to the properties of the step causing the validation error and setting delay validation to true.
September 25, 2012 at 8:28 am
mickyT (9/24/2012)
Shame there isn't implicit conversion for money to int in the following
SELECT -(~$)
It would have made a good answer
If ^ was a POWER operator, you could do:
SELECT $^$
Alas,...
September 24, 2012 at 2:19 pm
Hmm, I couldn't think of anything shorter. I wanted to find a way to implicitly convert PI to a bit, but apparently there's no bit literal in SQL Server.
I...
September 21, 2012 at 9:00 am
Shoot, I had selected sp_who2, but changed it since it said disk reads instead of total disk IO.
Ugh... I'm never quite sure if it's an oversight, typo,...
September 21, 2012 at 7:07 am
Depending on the version of Windows your servers are running, you should be able to get the disk space information doing something like this:
EXEC xp_CMDShell 'wmic volume get capacity,caption,freespace'
You could...
September 20, 2012 at 7:09 am
Interesting question, I would have thought it would never return results if all the data was on a single page.
September 19, 2012 at 6:45 am
Divine Flame (9/17/2012)...Many of us (including me until I didn’t face this issue) assume that FORMAT & INIT work in the same manner, that's what prompted me to add INIT...
September 17, 2012 at 7:36 am
Good question... something many people tend to learn only after running into this for the first time.
September 14, 2012 at 6:42 am
Viewing 15 posts - 301 through 315 (of 429 total)