Viewing 15 posts - 2,266 through 2,280 (of 2,356 total)
Does this work?
UPDATE TBP
SET TBP.[Quantity_Remaining] = TBP.[Quantity_Remaining] - 1
FROM INSERTED I
INNER JOIN [tblTransactions] TT ON I.[Transaction_Number] = TT.[Transaction_Number]
INNER JOIN [tblBulkPurchases] TBP ON TT.[Transaction_Number] = TBP.[Transaction_Number]
WHERE TT.Transaction_Type = 'From Bulk...
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/
October 17, 2012 at 1:29 pm
Attached is a script that I have had around for a long time. I don't even remember where I found it, or who wrote it, so I can't even...
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/
October 11, 2012 at 8:02 am
Well, it seems like a lot of extra work to capture this. Why is the looging available in SSIS not adequate?
And, xp_cmdshell is one of the features that fall...
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/
October 10, 2012 at 2:56 pm
The new posting is a lot cleaner.
From a purely personal perspective, when I see requirements like this:
• Experience working with Windows server, including Active Directory and proper disk configurations.
•...
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 8, 2012 at 2:05 pm
I have been on a search for a new position for almost a year. I have landed my "dream" job as a senior DBA, though!
I actually saw this listing...
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 8, 2012 at 7:11 am
Can someone, anyone, get the Microsoft SQL team to talk to the Microsoft Dynamics Great Plains team?
Can you say database best practices?
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/
May 31, 2012 at 10:07 am
No. I can stop/re-start, no problems.
The only time this appears is when we fail over to another node using Cluster Manager.
To add a bit more info, the nodes...
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/
May 21, 2012 at 3:15 pm
Look up exactly what DATEDIFF does in Books online.
Then, look at the values of the expiry_date field.
Are there values in this field that are greater than today? ...
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/
April 3, 2012 at 11:40 am
To possibly go off track, when you say this is for the purposes of auditing, you do realize that maintaining this relationship defeats the purpose auditing?
For starters, the auditing system...
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/
March 5, 2012 at 11:27 am
It seems too simple, so this may not be what you want:
SELECT TOP 10 ROW_NUMBER() OVER(ORDER BY columnA ASC) rn, columnB, columnC
FROM #tableA
There are 11 rows in your sample data....
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/
February 7, 2012 at 10:45 am
No, you are joiing the table to itself. This is probably an easy (Argh!) query, but without DDL and sample data, it's a guessing game.
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/
February 3, 2012 at 11:25 am
For starters, without any DDL and some sample data, we cant really give you a lot of help.
That being said, here are a few thigns to look at:
1. If you...
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/
February 3, 2012 at 9:49 am
Bron Tamulis (1/20/2012)
I know DYNSA is not an orphaned user. DYNSA user is automatically created when Great Plains is installed on a SQL Server, much...
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/
January 23, 2012 at 1:48 pm
It sounds af if the subscription was never initialized.
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/
December 29, 2011 at 1:37 pm
To re-state what I think you need, or want:
1. Server A, Table A, 10 rows get inserted. These rows then get replicated to Server B.
2. Server B, same Table...
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/
December 29, 2011 at 11:06 am
Viewing 15 posts - 2,266 through 2,280 (of 2,356 total)