Viewing 15 posts - 40,831 through 40,845 (of 59,069 total)
Heh... I was right. And, I looked up what PIVOT and CHOOSE do (I don't even know how to spell "ACCESS") and I believe we can do this. ...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 3, 2009 at 5:40 pm
mister.magoo (12/3/2009)
If trailing "0"s are allowed, why bother with all that?
Why not just (based on the...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 3, 2009 at 4:48 pm
Heh... it's alright, Kevin. I really don't want VPN access because if something goes wrong, then the "new guy" always gets the blame. Besides... there might be a...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 3, 2009 at 3:49 pm
By the way... here's the next step in turning you from a newbie to an SQL monster... it's what I'll use tonight to solve your problem... heh... unless you beat...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 3, 2009 at 2:59 pm
You did real good especially for a first timer on such a thing! You've gotten yourself into just a little bit of a problem because you used BETWEEN instead...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 3, 2009 at 2:55 pm
Test-170228 (12/2/2009)
Man, you get this right, and I am going to send you a cheque for some pizza money for sure or steak 😉
Hopefully, this will be the final question....
--Jeff Moden
Change is inevitable... Change for the better is not.
December 3, 2009 at 2:32 pm
I thought of doing that, as well. But if someone stops at the first post (as so often happens), they'd have bad code.
--Jeff Moden
Change is inevitable... Change for the better is not.
December 3, 2009 at 2:14 pm
Ah... now I see. Somewhere along the line, a space in quotes got dropped when I transferred the code to the forum window. I've edited the previous code...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 3, 2009 at 8:47 am
Peter Brinkhaus (12/3/2009)
SELECT...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 3, 2009 at 8:40 am
chandrashekar.2512 (12/1/2009)
ALTER FUNCTION [dbo].[fnSplit](
@InputString varchar(8000)
,@Delimiter varchar(10)
)
RETURNS @TempTable table(
ID int identity(1,1)
,[VALUES] varchar(8000)
)
AS
BEGIN
...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 3, 2009 at 8:34 am
vikas bindra (11/23/2009)
Nabha (11/23/2009)
Jeff Moden (11/20/2009)
Nabha (11/20/2009)
MY bad! go with Vikas, that is the right solution for you.
Heh... no it's not...that function has a While Loop in it and it's...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 3, 2009 at 8:33 am
Pemmasani Srinivasa Rao. (12/3/2009)
I think the following is the better code to split the string seperated by comma.Declare @inputString varchar(1000)
set @inputString='1,2,3,5,6,7,8'
while(charindex(',',@inputString)>0)
begin
print substring(@inputString,1,charindex(',',@inputString,1)-1)
set @inputString=stuff(@inputString,1,charindex(',',@inputString,1),'')
end
Why do you think a loop is better...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 3, 2009 at 8:20 am
😉
--Jeff Moden
Change is inevitable... Change for the better is not.
December 3, 2009 at 8:16 am
The other neat part BULK INSERT is that you can use a "trusted connection"... no need for a user name or password in clear code. Post back if you...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 3, 2009 at 8:14 am
From Books Online...
The common language runtime (CLR) is the heart of the Microsoft .NET Framework and provides the execution environment for all .NET Framework code. Code that runs within the...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 2, 2009 at 8:42 pm
Viewing 15 posts - 40,831 through 40,845 (of 59,069 total)