Viewing 9 posts - 1 through 9 (of 9 total)
February 11, 2016 at 8:03 am
Can you specify the view definition you used for the 2 Fact tables? I'm trying to follow along and also have the 32 bit version installed.
Thanks!
February 10, 2015 at 8:54 am
Andy DBA (6/14/2011)
AaronTC05 (6/14/2011)
RE: Common SQL Error 3 - You're Using the Wrong DatabaseThe way I get around this is to fully qualify all my table names with dbname.schema/owner.tablename
...
Many organizations...
June 14, 2011 at 10:35 am
RE: Common SQL Error 3 - You're Using the Wrong Database
The way I get around this is to fully qualify all my table names with dbname.schema/owner.tablename
That way I can be...
June 14, 2011 at 8:03 am
Here is an example of a real world use of impersonation:
http://nickgrattan.wordpress.com/2007/07/24/bringing-impersonation-to-sql-server-2005/
For what you want to do it sounds like you'll need to grant 'permanent' (not impersonate) permission to...
October 11, 2010 at 2:01 pm
How are you connecting to SQL Server from your website? I think when copying a to a new virtual directory, the anonymous user password is cleared (as a security...
October 8, 2010 at 1:43 pm
I think you could do what you're trying to do with some dynamic sql:
declare @sometable nvarchar(255)
declare @sql nvarchar(4000)
DECLARE @ParmDefinition nvarchar(500)
set @ParmDefinition = '@sometable varchar(255)'
set @sometable =...
September 23, 2010 at 1:22 pm
Impersonate is useful when you want to give another user the same permissions for a period of time. For example, you could allow another user to impersonate your...
September 22, 2010 at 2:38 pm
Viewing 9 posts - 1 through 9 (of 9 total)