Viewing 15 posts - 1 through 15 (of 78 total)
Cause found but problem stays.... Microsoft sucks again. I keep on being amazed by the fact that Microsoft can be both brilliant in making a product like SQL Server but...
June 20, 2018 at 3:31 am
For me it matters that there are gaps.... in our setup the identity is used as the employee number, and the employees use it to log in. Because MS suddenly...
March 7, 2017 at 2:27 am
If I read my SQL correct, one conversion takes 0.2 msec.... way to go! Thanks to all!
July 15, 2015 at 8:44 am
What's the final code now?
July 15, 2015 at 8:25 am
Wow... thanks for the improvements!
Raymond
July 15, 2015 at 7:16 am
Yes, I saw older posts, was just wondering what fastest would be.
I eventually came up with this based on older posts:
ALTER FUNCTION [dbo].[__fx_test] (@countryNr INT, @telNr NCHAR(30))
RETURNS CHAR(30)
WITH SCHEMABINDING
AS
BEGIN
DECLARE...
July 15, 2015 at 5:53 am
Do you remember if the status of the databases were Synchronized or Synchronizing before you performed the seconda FO ?
My guess is Synchronizing.... I'm kinda new to AAG so I...
July 8, 2015 at 4:48 am
Hey, what I did, using the SSMS, was:
Connect to Server DB01 and navigate to AlwaysOn High Availability | Availability Groups | AAG-MyGroup (Primary)
Right-click, Select Failover
Check that Failover Readiness is "No...
July 8, 2015 at 4:24 am
yes and yes
I have a gut feeling I must reboot differently. I can't find on Google anywhere best practise how to reboot a clustered SQL sytem
July 8, 2015 at 3:54 am
Thanks for the feedback guys.
We nailed it down to the following: we looked at "running queries" and found out that there was a ASYNC_NETWORK_IO /
PREEMPTIVE_OS_WAITFORSINGLEOBJECT issue, and we...
June 8, 2015 at 7:11 am
Hmm, yes was considering using a trigger... thanks for all your inputs
May 11, 2015 at 2:20 pm
Sounds like it should work, however when I change my formula to:
RTRIM(([dbo].[fx_formatTelnr]([project],[user_tel])))
I still get the error.
What strikes me is the following:I am trying to persist the field in table campaign,...
May 11, 2015 at 1:54 pm
What I want is a system that a user can enter a telephonenumber, and that that automatically gets converted to international style. For example for a Ducth mobile number: 06-12345678...
May 11, 2015 at 11:37 am
Thanks for your reply. A pity.... probably have to use a trigger that updates the indexed field when the record is updated/inserted....
May 11, 2015 at 10:31 am
Viewing 15 posts - 1 through 15 (of 78 total)