Viewing 15 posts - 1 through 15 (of 15 total)
I guess I don't need it.
I want all of Dim Time to be updated.
SCOPE(descendants([Dim FMS Heirarchy].[FMS Reporting Hierarchy].[FMSH Financial Page].&[Income Statement],[Dim FMS Heirarchy].[FMS Reporting Hierarchy].[FMSH Financial Page],SELF_AND_AFTER));
This =(ABS(([Measures].[FMSA Monthly Activity].CurrentMember)));
Fore_Color...
October 20, 2016 at 2:27 pm
OK but is the scoping correct? See link on post.
My values are not getting updated.
October 20, 2016 at 1:54 pm
Notify multiple operators with difference results
https://sqlhiker.com/2016/07/09/notify-multiple-operators-with-difference-results/[/url]
July 9, 2016 at 3:01 pm
I'm getting the same thing with my SSMS 2012 and 2014. It seem to start when I added and upgraded Red-gates SSMS Ecosystem Project tools version (1.0.3.4).
I'm running Windows 8.1...
June 12, 2014 at 11:36 am
I second this request.
March 21, 2013 at 12:46 pm
I found this in the log.
Date3/8/2013 8:16:52 AM
LogWindows NT (Red Gate Software)
SourceSQL Doc 2
Category(0)
Event32
ComputerMYPC
Message
CommandLine
Main:Unhandled Exception
System.ArgumentNullException: Value cannot be null.
Parameter name: value
at System.IO.Directory.SetCurrentDirectory(String path)
at System.Environment.set_CurrentDirectory(String...
March 8, 2013 at 6:25 am
Answered my own question today.
I setup a new Database trigger:
CREATE TRIGGER [DB_Add_extended_propeties]
ON DATABASE
FOR CREATE_TABLE,CREATE_VIEW, CREATE_PROCEDURE
AS
SET NOCOUNT ON
DECLARE @eventInfo XML
SET ...
January 16, 2013 at 2:18 pm
Answered my own question today.
I setup a new Database trigger:
CREATE TRIGGER [DB_Add_extended_propeties]
ON DATABASE
FOR CREATE_TABLE,CREATE_VIEW, CREATE_PROCEDURE
AS
SET NOCOUNT ON
DECLARE @eventInfo XML
SET ...
January 16, 2013 at 1:57 pm
Download SSMS Tools Pack - http://www.ssmstoolspack.com/
then add the following custom script.
DECLARE @type varchar(50), @timestamp DATETIME, @user VARCHAR(100)
SELECT @type=CASE WHEN [type] = 'U'
THEN 'TABLE'
WHEN [type] = 'V'
THEN'VIEW'
...
January 16, 2013 at 8:11 am
Thanks for all the great replies. I'm learning alot.
I was working on reviewing extended properties we currently have and forgot to join to sys.objects. I was joined to sys.table. So...
January 16, 2013 at 7:47 am
I couldn't found a way to list views access history.
The only thing I could find was to run a SQL audit.
October 30, 2012 at 10:49 am
I have tried it and it works. SQL 2005 and 2008 R2.
September 20, 2012 at 10:08 am
Viewing 15 posts - 1 through 15 (of 15 total)