Viewing 15 posts - 3,571 through 3,585 (of 19,564 total)
I have seen a few other people use StreamInsight for this type of thing. They used it to import Ticker data all day long.
February 19, 2014 at 6:16 pm
dwain.c (2/19/2014)
SQLRNNR (2/19/2014)
Yay - I'm finally insane!!! :hehe::w00t:
Hearty congratulations on this accomplishment!
I'm struggling to get to 4000 posts because of all the inane questions being asked lately. 😛
Yeah but you...
February 19, 2014 at 5:19 pm
Gary Gwyn (2/19/2014)
February 19, 2014 at 3:50 pm
It is a best practice to set a max server memory limit. Right now, you are starving the OS of memory and in the end you could be causing...
February 19, 2014 at 3:45 pm
duplicate thread
post answers to http://www.sqlservercentral.com/Forums/Topic1543228-1550-1.aspx
February 19, 2014 at 3:42 pm
Steve Jones - SSC Editor (2/19/2014)
And here I thought you were already insane, Jason.Congrats
Ask me again in five minutes and I might have already forgotten, you know how that insanity...
February 19, 2014 at 1:37 pm
SQLRNNR (2/19/2014)
stormsentinelcammy (2/19/2014)
A life long dream to reach that status?to become insane - absolutely :w00t:
Inpainly Sane?
Thanks
February 19, 2014 at 1:29 pm
stormsentinelcammy (2/19/2014)
A life long dream to reach that status?
to become insane - absolutely :w00t:
February 19, 2014 at 1:08 pm
Koen Verbeeck (2/19/2014)
SQLRNNR (2/19/2014)
Yay - I'm finally insane!!! :hehe::w00t:
Congrats!
One day I'll catch up... 😎
I don't doubt that.
Thanks
February 19, 2014 at 12:59 pm
Evil Kraig F (2/19/2014)
Congratz Jason. May you have many more years of helping people here.
Thanks SSCertifiable, err Mr Evil Kraig 😀
February 19, 2014 at 12:56 pm
tschuler-738392 (2/19/2014)
thanks. After looking at your query it made sense. I also just read the information on that Function. Thank you.
You're welcome.
February 19, 2014 at 12:39 pm
Here is the code example for the stuff function using a CTE and the provided sample data as well.
WITH client AS (SELECT 'P1234' AS client_num
UNION
SELECT 'C1234' AS client_num
)
SELECT STUFF( client_num,...
February 19, 2014 at 12:38 pm
tschuler-738392 (2/19/2014)
The string in those fields can start with any Letter not always C or P
The CTE is provided only as a means to ingest the data you provided. ...
February 19, 2014 at 12:34 pm
There is also the replace option such as follows.
WITH client AS (SELECT 'P1234' AS client_num
UNION
SELECT 'C1234' AS client_num
)
SELECT REPLACE(client_num,LEFT(client_num,1),LEFT(client_num,1) + '00') AS client_num
FROM client;
Stuff would probably be a little simpler.
February 19, 2014 at 12:31 pm
Solomon Rutzky (2/19/2014)
SQLRNNR (2/19/2014)
Alan.B (2/19/2014)
SQLRNNR (2/19/2014)
One question I think could be answered and would be very useful to those noobs to CLR.
How do you get...
February 19, 2014 at 12:26 pm
Viewing 15 posts - 3,571 through 3,585 (of 19,564 total)