Viewing 15 posts - 1,021 through 1,035 (of 1,464 total)
Can you please help me with below query how to get the another...
July 16, 2017 at 11:26 pm
With not much to go on, this should get you startedDECLARE @String VARCHAR(20) = 'david,kam';
SELECT RIGHT(@String, LEN(@String) - CHARINDEX(',', @String)) + ' ' + LEFT(@String,...
July 14, 2017 at 12:14 am
July 14, 2017 at 12:00 am
ManicStar - Thursday, July 13, 2017 2:07 PMSafe
Valuables
July 13, 2017 at 10:20 pm
July 7, 2017 at 6:43 am
July 7, 2017 at 6:33 am
If the candidate knows the syntax, great. If not, I am expecting them to say something like "I do not use it often, so I do not know the syntax....
July 7, 2017 at 5:14 am
DECLARE @Num...July 7, 2017 at 2:45 am
@Grant Fritchey
I believe that congratulations are in order, sir.
July 5, 2017 at 11:13 pm
If you don'y know your data type, how are you going to extract it from the XML?
I had a similar question about the performance difference between extracting data...
July 5, 2017 at 10:30 pm
July 5, 2017 at 10:08 pm
July 5, 2017 at 3:05 am
If concurrency is an issue, you can also dynamically spin up SEQUENCE objects to get the next DocNumber.
There is no need for the tracking table. Just a proc
July 5, 2017 at 12:29 am
Viewing 15 posts - 1,021 through 1,035 (of 1,464 total)