Viewing 15 posts - 5,926 through 5,940 (of 15,381 total)
Here is a thread that discusses this.
http://www.sqlservercentral.com/Forums/Topic556439-146-1.aspx
January 16, 2014 at 12:22 pm
Luis Cazares (1/16/2014)
Sean Lange (1/16/2014)
What is the expected output based on the sample data?
Hey Sean,
It seems that the OP wrote the expected results and attached the sample data. So adding...
January 16, 2014 at 9:57 am
gatorfe (1/16/2014)
January 16, 2014 at 9:48 am
Can you post GetNums? There have been a few different proper case functions around here over the years. They are always a challenge because sometime you want every word capitalized...
January 16, 2014 at 9:26 am
Shanmuga Raj (1/16/2014)
My data is
COLUMNA
-------------
(Location is Asia and Location is Africa) and (Manager...
January 16, 2014 at 7:52 am
It does seem that what you need it a string splitter. The one posted above will work but the performance of that will be awful. Please take a look at...
January 16, 2014 at 7:50 am
pooja.sharma 54426 (1/16/2014)
Please create an empty database and run following sqls.Add some data into them .
Nice job posting the ddl. Can you post some data? Remember we are all volunteers...
January 16, 2014 at 7:48 am
Your code works perfectly fine. It was not returning Doc jr because you filtered it out in your where clause. The easiest way here is to add filtering to the...
January 16, 2014 at 7:37 am
rabih_karam (1/16/2014)
WHY U DONT USE THE PIVOT/UNPIVOT STATEMENTS TO TRANSFORM COLUMN DATA INTO MANY COLUMNS??
Posting in call caps is considered yelling. No need to yell, we are all friends around...
January 16, 2014 at 7:25 am
Rod at work (1/15/2014)
At this point I'm considering the possibility of using NVARCHAR. We didn't, back in the day when the database and tables were first created (~1997 or...
January 15, 2014 at 1:32 pm
Shanmuga Raj (1/15/2014)
declare @result varchar(200)
set @ch = 'US , CA- I have been there'
BEGIN
set @result = LTRIM(RTRIM(CAST(@ch as varchar(max))))
set @result...
January 15, 2014 at 1:20 pm
For anybody else stumbling across here I formatted this query so it is more legible.
SELECT DISTINCT d.dlr_reference_num,
...
January 15, 2014 at 12:55 pm
marcjason (1/15/2014)
I want it to run each stored procedure and if the result for any of the stored procedures is not...
January 15, 2014 at 12:18 pm
Awesome job posting clean ddl. There are a few questions here. What is the balance? I assume it is some sort of calculation between inward and outward? Also, you said...
January 15, 2014 at 12:14 pm
hlsc1983 (1/15/2014)
Grant Fritchey (1/15/2014)
January 15, 2014 at 10:51 am
Viewing 15 posts - 5,926 through 5,940 (of 15,381 total)