Viewing 9 posts - 1 through 9 (of 9 total)
Sean Lange (6/27/2013)
if OBJECT_ID('tempdb..#Something') is not null
drop table #Something
create...
June 27, 2013 at 9:19 am
Steve Jones - SSC Editor (6/26/2013)
You'll have to provide mode DDL and sample data. Also, how do you define an internal address?
Any internal email will not have the @provider.com.
June 27, 2013 at 9:17 am
This is a learning experience on this one. Self taught and learning as I go.
I'd like result to be the email address only and it is the last entry in...
June 26, 2013 at 3:00 pm
Hopefully this helps understand what I am asking.
SELECT [t].[TicketID] as "Ticket"
,
.[TicketHistoryID]
...
June 26, 2013 at 10:03 am
whenriksen (6/18/2013)
Create a view to pre-filter your data on the remote server. Ideally, create a single view that has all of the...
June 18, 2013 at 12:30 pm
Thank you--- Error is gone, but Runtime is long.
Any ideas on reducing runtime?
June 18, 2013 at 11:22 am
ok, so I used this query-
DECLARE@strColumns VARCHAR(MAX)
DECLARE@strSQL VARCHAR(MAX)
IF OBJECT_ID('tempdb..#tmp_table') IS NOT NULL
DROP TABLE #tmp_table
CREATE TABLE #tmp_table
(
CallDateTimeDATETIME,
HistIDINT
)
INSERT #tmp_table( CallDateTime, HistID )
Select'11/1/2012 9:02:30.000',2270647UNION ALL
Select'11/1/2012 8:59:59.000',2270648UNION ALL
Select'11/1/2012 9:01:33.000',2270650UNION ALL
Select'11/1/2012 9:03:40.000',2270652UNION ALL
Select'11/1/2012 9:02:50.000',2270653UNION ALL
Select'11/1/2012...
February 19, 2013 at 2:59 pm
Day runs 0800-2000 and I think it would run better if the results came out like this:
Date 08:00-08-30|08:30-0900...
February 19, 2013 at 7:36 am
Viewing 9 posts - 1 through 9 (of 9 total)