Viewing 15 posts - 8,131 through 8,145 (of 8,760 total)
Raymond.Pietrzak (5/30/2014)
Update [WBPROD].[dbo].[TASK_SCHEDULE]
Set TSKSCD_DESCRIPTION = Replace(TSKSCD_DESCRIPTION, '<timezoneId>0</timezoneId><timezone>America/New_York</timezone>', '<timezoneId>1</timezoneId><timezone>America/Chicago</timezone>')
Update [WBPROD].[dbo].[TASK_SCHEDULE]
Set TSKSCD_DESCRIPTION = Replace(TSKSCD_DESCRIPTION,
...
May 30, 2014 at 10:14 pm
Since this is a 2012 thread, how about the window functions?
😎
create table #sampledata
(
userId int,
BaseYear int,
TotalSales float
)
insert into #sampledata
select 1,2008,25000 union
select 1,2009,22500 union
select 1,2010,23400 union
select 1,2011,26700 union
select 1,2012,25200 union
select 2,2008,25050...
May 30, 2014 at 10:05 am
I have found that one should generally (as much as I dislike generalization) avoid AUTO_GRID.
😎
May 29, 2014 at 1:57 pm
samalex (5/29/2014)
May 29, 2014 at 1:54 pm
Sean Lange (5/29/2014)
samalex (5/29/2014)
May 29, 2014 at 1:32 pm
GilaMonster (5/29/2014)
Developers who think they know more than I do. 😉 :hehe:
Ouch..... good thing that my title is no longer a "developer" :-P:-P
May 29, 2014 at 12:54 pm
adhiman (5/29/2014)
The query still runs...
May 29, 2014 at 12:51 pm
Sean Lange (5/29/2014)
May 29, 2014 at 12:18 pm
Forgive me for being slow here and slightly off the topic, but how can a single session, multiple batch thingy create multiple instances of a temporary table with the same...
May 29, 2014 at 12:10 pm
npatel 17252 (5/29/2014)
SHIT! Thanks stupid stupid stupid me 🙂
:-DThat is how we learn!:-D
😎
May 29, 2014 at 11:56 am
tshad (5/29/2014)
UPDATE Employee
SET VEmployeeID = CASE WHEN E.VEmployeeID IS NULL
...
May 29, 2014 at 11:54 am
GilaMonster (5/29/2014)
May 29, 2014 at 11:50 am
Cannot say much without knowing more about the table structures, first guess would be this part of the join
😎
dbo.TCDaily.TCDay = dbo.EmpList.EmpID
May 29, 2014 at 11:37 am
wolfkillj (5/29/2014)
Eirikur Eiriksson (5/29/2014)
wolfkillj (5/29/2014)
Eirikur Eiriksson (5/28/2014)
Quick thought, if the "signs" are points then I would have thought that the STContains function would be more appropriate.😎
Except that the requirement was...
May 29, 2014 at 9:33 am
wolfkillj (5/29/2014)
Eirikur Eiriksson (5/28/2014)
Quick thought, if the "signs" are points then I would have thought that the STContains function would be more appropriate.😎
Except that the requirement was to determine which...
May 29, 2014 at 8:38 am
Viewing 15 posts - 8,131 through 8,145 (of 8,760 total)