Viewing 15 posts - 316 through 330 (of 1,957 total)
This works better, I believe.
Yours was suffering from a nasty cross join that was mixing up the data (see ID 2 for example)
;WITH MyCTE([ID],[val])
AS
(
SELECT 1,'03,0000001,USD,010,81257946,,' UNION ALL
SELECT 2,'03,0000001,USD,010,81257946,,,015,121809761,,' UNION ALL
SELECT...
February 25, 2015 at 5:39 pm
LinksUp (2/23/2015)
robert.wiglesworth (2/23/2015)
01/15/2015 07/31/2015 2555 ...
February 23, 2015 at 4:31 pm
Another option to consider is IN
WHERE '123' in (Pend1,Pend2,Pend3...)
February 17, 2015 at 5:38 pm
Yes, I get the same - it's not very helpful is it?
I hope this prompts someone to point out how to spot the difference...
February 17, 2015 at 8:49 am
I don't have any idea why this is happening, but I would personally fire up Process Monitor
from https://live.sysinternals.com/tools
Filter it down to SSMS and see what is happening.
The other troubleshooting you...
February 17, 2015 at 8:47 am
Another possibility, non-sargable:
and replace(B.MasterAccount,'0','')=''
February 17, 2015 at 8:37 am
Yes, they are quite "normal" - https://msdn.microsoft.com/en-GB/library/ms189799.aspx
If you can't script them out, I would assume they are encrypted - a quick search for SQL Decryptor[/url] will let you overcome that.
February 16, 2015 at 5:08 pm
Your expected output appears to just be a straight selection from the input, but it's hard to tell with the post unformatted as it is.
Could you maybe provide your input...
February 15, 2015 at 12:48 pm
Have you set "RetainSameConnection" to False?
February 13, 2015 at 5:45 pm
Jeff Moden (2/5/2015)
mister.magoo (2/5/2015)
Hi Jeff,I have one also that handles A, B and C
Absolutely awesome! I could be wrong but it doesn't look like it would handle the "SHIFT",...
February 5, 2015 at 8:59 am
Hi Jeff,
I have one also that handles A, B and C
February 5, 2015 at 2:44 am
Thanks for sharing this.
February 4, 2015 at 6:13 am
Is the VPN directly into the server?
If so, connect the VPN, then on the client, open a dos prompt and type
ipconfig /all | find "DHCP Server"
Hopefully, this will reveal the...
February 2, 2015 at 1:05 pm
dmbreth (2/2/2015)
February 2, 2015 at 9:30 am
That sounds an awful lot like you have this server sat "on the internet", so please make sure you don't open the firewall!
Also, it sounds like you are trying to...
January 31, 2015 at 4:53 pm
Viewing 15 posts - 316 through 330 (of 1,957 total)