Viewing 15 posts - 3,121 through 3,135 (of 13,469 total)
JP10 (7/9/2013)
So what was...
July 9, 2013 at 2:25 pm
also, the bad news: keep in mind the hostname/workstation id as well as the Application Name can be configured to say anything in a connection string,
so you cannot always rely...
July 9, 2013 at 2:03 pm
is this on a sAN, where the SAN ends up coming on line AFTER the SQl service is already started?
i've seen a similar situation on my developer machine.
if you...
July 9, 2013 at 1:39 pm
Rod at work (7/9/2013)
July 9, 2013 at 1:36 pm
i think it has to do with FOR XML returns a stream of xml, and not an object we typically expect.
this is what i used for the proof of concempt...
July 9, 2013 at 12:49 pm
meltingchain (7/9/2013)
Thank you, I like the synonym one as its more like what i wanted.Just to be sure, the performance and space for the synonym shouldn't be anything noteworthy right?
nope...
July 9, 2013 at 11:16 am
not directly like that.
there's two ways to do it;
one is by using dynamic SQL, and the other is by using synonyms.
Declare @Location varchar(30)
set @location = 'database1.dbo.table1'
EXECUTE('Select * from ' +...
July 9, 2013 at 10:57 am
deepkt (7/9/2013)
2) Now, Change the existing Order of A3-3, A4-4, A5-5, A6-6 to a New order A3-1, A4-2,...
July 9, 2013 at 10:53 am
no not at all.
I'm suggesting to continue to use integrated security.
it seems to me, that you planned on setting it up that way, but the piece that is missing is...
July 9, 2013 at 10:48 am
to guarantee a specific order, you must have an explicit ORDER BY as part of your command.
SELECT
* FROM MiscItems ORDER BY DisplayOrder
July 9, 2013 at 10:40 am
i think the only thing missing is for you to find a domain group that everyone belongs to, like domainname\Domain Users, and add that as a login, and then as...
July 9, 2013 at 10:38 am
here's two ways to get to the default trace:
one via a query:
--SELECT * from sys.traces
declare @TraceIDToReview int
declare @path varchar(255)
SET @TraceIDToReview = 1 --this is the trace you want to review!
SELECT...
July 9, 2013 at 9:55 am
how about creating a procedure that runs under elevated privilesges, and give the helpdesk permissions to that?
here's just one example:
CREATE procedure pr_CallBoostedSecurityProcess( @name varchar(128), @password varchar(128) )
WITH EXECUTE...
July 9, 2013 at 9:47 am
Ed Wagner (7/9/2013)
July 9, 2013 at 9:16 am
Sean Lange (7/9/2013)
ummm....tables do not reside inside of a user or a role. They exist in the database, access to those tables is handled by the permissions granted to users...
July 9, 2013 at 9:12 am
Viewing 15 posts - 3,121 through 3,135 (of 13,469 total)