Viewing 15 posts - 9,481 through 9,495 (of 13,461 total)
as far as i know, you can get it only if they used their windows credentials to login to the server; if they logged in with a SQL login, it's...
May 14, 2010 at 6:42 am
you had joined them, thought that's what you wanted;
try a UNION ALL instead:
Select
Alias1.id ,
Alias1.type ,
Alias1.number ,
Alias2.ID_NBR ,
Alias2.PHONE_TYPE ,
...
May 13, 2010 at 12:24 pm
a slight variation on your original code; all i've really done is present more data, so you can see the changed columns;
since you never showed the PHONE_NBR from the other...
May 13, 2010 at 12:06 pm
restoration of items is something done from within TFS inteface in Visual Studio, and never at the SQL Server;
i'm pretty sure this is the steps:
in Visual Studio go to "Tools>>Options"...
May 13, 2010 at 11:20 am
well, i was looking at using the function is_rolemember(which returns 1 or NULL, not 1 or 0) and IS_MEMBER('af_developer'), but i think it finds explicit grants to roles, and not...
May 13, 2010 at 11:03 am
I don't think you understand the security model;
it is very common, for example, that an end user does not have any rights to tables, and all the operations occur only...
May 13, 2010 at 9:22 am
TheSQLGuru (5/13/2010)
>>they're a last resortNo, forums are NOT the last resort!
TheSQLGuru is right! this forum is one of my first items on my list of resources!
this...
May 13, 2010 at 8:53 am
I've been a member here for a while, and my skillset has matured in a large part because i answer questions here.
I'd love to see my first 20 posts here...
May 13, 2010 at 8:45 am
i think you could put the code in a stored procedure and use EXECUTE AS.
as an admin, creat ea procedure with the work inside it like this:
CREATE procedure pr_CallExternalProcess
...
May 13, 2010 at 7:48 am
wow that's a good question; i hadn't thought about auditing Reporting service instances....
do you think it would it be enough to use something like SQLRecon to find all SQL instances,...
May 13, 2010 at 7:23 am
D.Oc (5/13/2010)
Steve should ban those words (URGENT or IMMEDIATE HELP or NOW) to appear in the title.
No! those are my favorite threads!
"URGENT" posts are like a train wreck or...
May 13, 2010 at 6:41 am
there was missing commas and closing parentesis; Here is a syntactically correct verison of the above example, but I did not test ti to see if it worked:
declare @my_root_nbr int
set...
May 13, 2010 at 6:32 am
robert i've done this as part of the query before, but not as a feature of reporting services.
for example, i knew that i wanted exactly five columns of data, as...
May 12, 2010 at 9:27 pm
here's what i use;
due to a naming convention, i know i can skip tables that begin with certain characters; you might have similar logic which designates which tables are lookup...
May 12, 2010 at 11:49 am
run the procedure sp_depends; it will show all tables,views, functions and procedures that depend on your table;
because of late binding on stored procedures, it is possible that a procedure has...
May 12, 2010 at 6:59 am
Viewing 15 posts - 9,481 through 9,495 (of 13,461 total)