Viewing 15 posts - 3,121 through 3,135 (of 13,461 total)
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
amit_pjoshi (7/9/2013)
Can someone help its very urgent?
While developing the SSRS report we have to create a stored procedure using MDX query for this we have to hold the MDX...
July 9, 2013 at 7:26 am
it is not necessary to upgrade, no; the database backup is the same, regardless of service pack, version, and that's what you would backup/restore. the service packs / CU change...
July 9, 2013 at 6:06 am
tstagliano (7/9/2013)
July 9, 2013 at 6:01 am
huum (7/8/2013)
i am admin on remote location folder permissionand it does not even create new file
it does not matter if you are admin or not.
this is a common security misconception/"gotcha"....
July 8, 2013 at 12:46 pm
tstagliano (7/8/2013)
July 8, 2013 at 11:34 am
Viewing 15 posts - 3,121 through 3,135 (of 13,461 total)