Viewing 15 posts - 91 through 105 (of 534 total)
I got the full story. I think SQL Server memory configuration was changed from 2GB to 2mb? can anyone help me resolve?
January 6, 2012 at 6:56 am
Thanks all. now that SP3 has been successfully applied. I will go ahead and change 'sa' to a known password.. Thank you all...
January 5, 2012 at 10:47 am
Thank you. I guess not knowing the 'sa' password is not a deal breaker for applying the service pack.
The reason that I am only patching up...
January 5, 2012 at 9:15 am
I missed that.. THANK YOU!!!!
January 5, 2012 at 8:23 am
Try.. SELECT * FROM sys.server_triggers
I had the same problem and someone else helped me (today) on this forum.. happy turkey day!!!
November 23, 2011 at 1:38 pm
SELECT * FROM sys.server_triggers WHERE parent_class=0
returns 0 rows as well.... bizzarre!!!!!!!!!!! anyone?
November 23, 2011 at 1:28 pm
I create the Trigger (see above)
and then run SELECT * FROM sys.triggers WHERE parent_class=0 against the master DB
it returns 0 rows?
November 23, 2011 at 12:56 pm
Quincy and his trusty assisant Sam Fujiyama to keep him in line 🙂
November 18, 2011 at 12:36 pm
Thank you one and all.. time to put on my Quincy lab coat and go do some investigating on 'cte's 😀
November 18, 2011 at 12:29 pm
Thank you!!!
I ran this and it worked:
;WITH cte
AS (SELECT ROW_NUMBER() OVER (PARTITION BY path, sortOrder,id, repname, repfilepath, language_cd, updateddate, repFormat
--add all column names col1,col2,...
ORDER BY ( SELECT 0)) RN
FROM dbo.OOReportFile_TEMP)
DELETE...
November 18, 2011 at 12:13 pm
not sure what ;WITH cte means..
but I tried this:
Select * (SELECT ROW_NUMBER() OVER (PARTITION BY path, sortOrder,id, repname, repfilepath, language_cd, updateddate, repFormat
--add all column names col1,col2,...
ORDER BY...
November 18, 2011 at 11:49 am
Thank you all for your help and guidance
November 14, 2011 at 11:06 am
Thank you Gail and Lowell! maybe I'll have to play around with it a little but when I create my DDL trigger like this:
CREATE TRIGGER [Create_Database_Trigger]
ON ALL...
November 14, 2011 at 9:44 am
SELECT
DATEADD(D , 0 , DATEDIFF(D , 1 , GETDATE())) AS CreatedSince
, create_date AS CreatedOn
, *
FROM
sys.databases
WHERE
...
November 14, 2011 at 8:55 am
The DDL Triggers emails me when Database is created. Doesnt' tell me which Database - just which Instance the database was created in.
I would then have...
November 14, 2011 at 8:39 am
Viewing 15 posts - 91 through 105 (of 534 total)