Viewing 15 posts - 1,996 through 2,010 (of 2,356 total)
Grant Fritchey (8/4/2015)
xsevensinzx (8/3/2015)
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
August 4, 2015 at 8:29 am
ZZartin (8/3/2015)
Hmm... what's fun is when good processes get built around bad processes and then the bad processes can't be fixed without redoing a lot more things.
Then you have a...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
August 3, 2015 at 8:57 am
Alvin Ramard (8/3/2015)
Ed Wagner (8/3/2015)
Sean Lange (8/3/2015)
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
August 3, 2015 at 8:11 am
I just left a position because I got tired of hearing "That's the way we always did it" AND 'We don't have time to do it right".
Together, those sentences said...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
August 3, 2015 at 8:05 am
Ed Wagner (8/3/2015)
Jeff Moden (8/2/2015)
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
August 3, 2015 at 6:30 am
Jeff Moden (8/17/2011)
Jayanth_Kurup (8/17/2011)
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
August 1, 2015 at 7:38 pm
bryan.holmstrom (7/30/2015)
I have added the update as follows:
WITH CTE_Concat AS
(
SELECT lb.ListID, lmb.EntityID,
STUFF((SELECT '; ' + lb.ListName
FROM ReznickGroup_MSCRM.dbo.ListMemberBase lmb
INNER JOIN ReznickGroup_MSCRM.dbo.ListBase lb ON lb.listid = lmb.listid
WHERE lmb.entityid =...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
July 30, 2015 at 11:25 am
You need to do something with the CTE. Add the update after you create the CTE
WITH CTE_Concat AS (
SELECT lb.ListID, lmb.EntityID,
STUFF((SELECT '; ' + lb.ListName
FROM ReznickGroup_MSCRM.dbo.ListMemberBase lmb
INNER...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
July 30, 2015 at 10:57 am
I'm not sure if this applies or not, but I had the same issue with SQL 2008 on a 6 node (5 active, one passive) cluster.
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
July 28, 2015 at 10:02 am
I have 6 questions and could grow, and since each question has its own comments box that is made visible based on user's response, how will just one comments field...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
July 27, 2015 at 10:16 am
Ok, the questions table is not bad? What is qID? qText? Would Question_ID make more sense to someone? How about Question_Text?
In code, nobody but a programmer ever looks...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
July 27, 2015 at 8:12 am
For starters, your names are HORRIBLE.
Please take a look at your tables and names. Spend a few minutes and make them meaningful. I mean meaningful to someone other than yourself....
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
July 26, 2015 at 8:53 pm
Al.Pacca (7/15/2015)
Is it the file tab only which need to edit - okay,
Is it okay if i safe the 2 files with a new (different)...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
July 15, 2015 at 6:32 am
e4d4 (7/12/2015)
No, account that use SQL Agent must be a member of sysadmin role. https://msdn.microsoft.com/en-us/library/ms191543.aspx
Not sure why this recommendation is being made by MS.
I have never granted sysadmin to the...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
July 12, 2015 at 2:52 pm
I've been down that road also!
If you keep going on this thread, as well as others, the "answer" is to drop the trigger, drop the publication and subscription, and re-do...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
July 10, 2015 at 7:51 am
Viewing 15 posts - 1,996 through 2,010 (of 2,356 total)