Viewing 15 posts - 166 through 180 (of 474 total)
srikantzs (3/17/2010)
I used a Table valued function,but it didn't return any rows.
SELECT *
FROM fn_my_permissions('tablename', 'OBJECT')
0 rows returned
which tells me the permissions...
March 17, 2010 at 1:20 pm
Does any of the data it gets live on a different server than the procedure is running on?
If so, sounds like it's losing it's connection to a remote...
March 17, 2010 at 1:14 pm
Not sure how that would change permissions. What reason did it give for failing?
March 17, 2010 at 1:13 pm
CirquedeSQLeil (3/17/2010)
The answer to that is it depends. How much other transaction volume do you experience?Personally without more info, I would lean towards every 15 minutes.
Agreed. Way to...
March 17, 2010 at 1:09 pm
srikantzs (3/17/2010)
I had a job to alter data type of the primary key in...
March 17, 2010 at 1:04 pm
Good one. I'd never really thought about it much, but totally makes sense.
March 15, 2010 at 6:55 am
Might make sure there isn't a firewall blocking that TCP port.
March 5, 2010 at 7:47 am
I'm not a SAN expert, but even if the SAN can keep up with your I/O needs when you put the data/log files on the same disk, I would argue...
March 4, 2010 at 11:24 am
I agree, it's got to be something running. What would I profile for though?
January 21, 2010 at 9:33 am
We do have a nightly job that defrags/rebuilds indexes, but the tempdb growth doesn't happen anywhere close to when that job runs.
That's what's so frustrating about this...it seems...
January 20, 2010 at 8:19 am
Just out of curiosity, has anyone ever run up against the 250 index limit in SQL 2005. I can't imagine ever needing that many in our environment.
Perhaps...
January 19, 2010 at 6:46 am
What do you mean by it will filter things out? Won't it just return a set of SPs that user has permission to execute?
January 5, 2010 at 12:08 pm
I wound up with this:
select *
from
sys.database_permissions p
inner join sys.objects o
on p.major_id = o.object_id
inner join sys.schemas s
on o.schema_id = s.schema_id
where
p.class = 1
and p.major_id > 0
and p.grantee_principal_id = 22
and o.type = 'P'
January 5, 2010 at 10:27 am
Viewing 15 posts - 166 through 180 (of 474 total)