Viewing 15 posts - 2,866 through 2,880 (of 15,381 total)
I would suggest putting that type of formatting in your bar graph instead of in your sql. Formatting in the front end is best so you can maintain your dates...
May 12, 2015 at 7:28 am
Let's start with formatting this so we can see what is going on.
DECLARE childcur_inventory CURSOR
FOR
SELECT Structure_Number
,STATE
,Neighbor_State
,Border_Bridge_Structure_Number
FROM #InventoryItems
OPEN childcur_inventory
FETCH childcur_inventory
INTO @Structure_Number
,@State
,@Neighbour_State
,@Border_Bridge_Structure_Number
WHILE @@FETCH_STATUS = 0
BEGIN ---@@FETCH_STATUS = 0
IF @Neighbour_State = 'CN'
OR @Neighbour_State...
May 12, 2015 at 7:25 am
rirons04 (5/8/2015)
What I have posted above is exactly what I am running. Is there something specific that I am missing?~Ryan
Run your code again, but before you do uncomment this line.
--select...
May 8, 2015 at 3:28 pm
Marv2011 (5/8/2015)
May 8, 2015 at 10:51 am
Marv2011 (5/8/2015)
I sometimes work with large data sets where my tables have over 100 columns. Is there an easier way of doing this instead of 100 case statements?...
May 8, 2015 at 10:00 am
GG_BI_GG (5/7/2015)
Ok. I will look..But is there any option for a subqeury (COALESCE), CROSS APPLY...
COALESCE is just another function and is not at all relevant here. Not sure how a...
May 7, 2015 at 1:38 pm
GG_BI_GG (5/7/2015)
Ye it still dont work.. I think Alvin's recommendation makes my qeury not quicker..
Is there a better way to make my query syntax, on which...
May 7, 2015 at 1:01 pm
Lynn Pettis (5/7/2015)
Sean Lange (5/7/2015)
Lynn Pettis (5/7/2015)
Sean Lange (5/7/2015)
Alvin Ramard (5/7/2015)
Try using the LEFT function instead of SUBSTRING to see if it will run any faster.
The problem is for the...
May 7, 2015 at 12:53 pm
Lynn Pettis (5/7/2015)
Sean Lange (5/7/2015)
Alvin Ramard (5/7/2015)
Try using the LEFT function instead of SUBSTRING to see if it will run any faster.
The problem is for the first join they want...
May 7, 2015 at 12:44 pm
Alvin Ramard (5/7/2015)
Try using the LEFT function instead of SUBSTRING to see if it will run any faster.
The problem is for the first join they want the first character. For...
May 7, 2015 at 12:33 pm
GG_BI_GG (5/7/2015)
Select DISTINCT CAST(a.DATAAREAID AS NVARCHAR(4)) + '_' + CAST(a.ACCOUNTNUM AS...
May 7, 2015 at 12:19 pm
I was about to post my version but Lynn beat me to it. On second thought, I will post my version anyway. It is a very different approach from his...
May 7, 2015 at 10:33 am
KGJ-Dev (5/7/2015)
Hey sean,Thanks for your reply, i am sorry that i misspelled. it is 3 char month. JAN/FEB/MAR/APR/MAY/JUN...
Any thought/ sample pelase
What have you tried?
May 7, 2015 at 9:09 am
KGJ-Dev (5/7/2015)
I have column called DateDesc and the values are "Start JAN","END MAY", "Mid JUNE". Like this i have for all the months of the year.
I needed to convert this...
May 7, 2015 at 8:52 am
nick.latocha (5/7/2015)
create table #items (itemID varchar(10), statusID int)
create table #statuses (statusName varchar(50), statusID int)
insert into #items values ('Item 1',1|2|8)
insert into #items values ('Item 2',1|4)
select * from #items
insert...
May 7, 2015 at 8:49 am
Viewing 15 posts - 2,866 through 2,880 (of 15,381 total)