Viewing 9 posts - 1 through 9 (of 9 total)
We ran in to a similar problem with a Group Managed Service Account
The solution was found in
*by giving read servicePrincipleName and write servicePrincipleName rights to the...
May 20, 2015 at 9:09 am
This is not a replacement to track complete history of changes (who dunnit) but more a 'do i have the latest version'-tool(replication/synchronisation)
To track changes I usually add a trigger and...
June 18, 2012 at 5:48 am
You're missing several other solutions
3. using UDF, coalesce and a subview
ALTER FUNCTION dbo.Concatenate_Functiebenaming (@ID_Personeelslid INT)
returns varchar(200)
as BEGIN
declare @STR varchar(202)
...
October 14, 2009 at 4:27 am
This also happens a lot while executing cross database procedures
E.g. Trigger calls procedure in other db to update lookuptable
possible solution: run the procedure asynchronously (in a new connection)
June 2, 2009 at 6:57 am
This is what I meant with the mail_queue table and an agent that sends periodically
February 11, 2009 at 2:57 am
Your drop code drops all default constraints
Your create code creates only some constraints /*e.g. datetime where col name like '%Last%Date%' */
I think if you'd want to do something like this...
February 10, 2009 at 2:36 am
I repeat my remark.
Be carefull calculating weekend days as datepart(dw, @date) in (1,7)
Under some language settings day 1 of the week is monday. e.g. when you connect to the sql...
February 4, 2009 at 8:36 am
Don't forget that sunday isn't first day of week everywhere.
Some people start with monday (sunday is the 7th day):D
February 4, 2009 at 2:09 am
Viewing 9 posts - 1 through 9 (of 9 total)