Viewing 5 posts - 1 through 5 (of 5 total)
Thanks! 🙂
I created a similar MDX script with SSRS on the Adventure Works DW 2008R2 sample database for testing purposes. The result is the same.
The difference between the two scripts...
February 9, 2012 at 3:40 am
Thank you for replying.
Actually the two scripts generate the same result. UNION only filter out the same rows but in this case there aren't any. And if I try to...
February 6, 2012 at 12:32 am
Hello!
Something like this:
SELECT
CTU.TABLE_SCHEMA + '.' + CTU.TABLE_NAME
,
KCU.COLUMN_NAME [COLUMN],
CTU2.TABLE_SCHEMA + '.' + CTU2.TABLE_NAME [REFERENCED_TABLE],
KCU2.COLUMN_NAME [REFERENCED_COLUMN],
CTU.CONSTRAINT_NAME [FK_CONSTRAINT]
FROM INFORMATION_SCHEMA.CONSTRAINT_TABLE_USAGE CTU
JOIN INFORMATION_SCHEMA.KEY_COLUMN_USAGE KCU ON KCU.CONSTRAINT_NAME = CTU.CONSTRAINT_NAME AND KCU.CONSTRAINT_SCHEMA = CTU.CONSTRAINT_SCHEMA
...
September 9, 2010 at 2:26 am
You will never get "In Progress" status.
See: http://www.sqlservercentral.com/articles/Administration/howtofindthatjobisrunning/2071/[/url]
Lacc
June 26, 2009 at 4:11 am
Missing brackets in DENY example. The correct syntax is:
DENY SELECT () ON Employees TO [MyDOMAIN\Mani]
Lacc
May 27, 2009 at 2:38 am
Viewing 5 posts - 1 through 5 (of 5 total)