Viewing 15 posts - 1 through 15 (of 28 total)
Got it! I kept thinking there must be a way to do an overall COUNT of what the query was doing. Here it is:
SELECT COUNT(*) FROM (
SELECT CALL_BEGAN_DT
SOP_POOL_ID
,C622.CLNT_NB
,CALL_TYPE_CD
FROM...
September 24, 2010 at 11:40 am
I'm able to get the correct record count with the sql below. However, I get 650xxx individual rows because of the Group By clause instead of 1 row with...
September 24, 2010 at 9:51 am
Thanks a lot for the responses!
I hear ya Lowell on breaking up dates and storing separately. Unfortunately this is an old legacy system where the database isn't...
May 25, 2010 at 11:20 am
The column being used is the acct_nb which also is indexed on both source tables and the destination table. Thanks!
March 16, 2010 at 8:31 am
RP_DBA - thanks so much. This looks like it's working. I'm going to apply it to all my test cases to ensure.
The max(case when phone_stat_cd in...
February 24, 2010 at 7:29 am
Here is the code I'm testing in Data Manager. Data Manager is the interface we use to the vended cache database. Directly after the code is the error...
December 30, 2009 at 12:18 pm
I really appreciate the responses!
I was testing the CASE statement through a remote connection into Data Manager. Through Data Manager I query the cache database for the testing of...
December 24, 2009 at 8:13 am
Thanks for the CASE statement advice. When I run it to select from the source however, it doesn't like the ISNUMERIC. The data source is from a cache...
December 23, 2009 at 2:32 pm
Yes, a valid record will have the beginning and ending date and call times populated. The beginning date and call time will be less than the ending data and...
December 23, 2009 at 9:45 am
Yes, it would make sense to have the actual call begin time. Thanks again for your help.
Call Begin Date: 12/03/2009
Call Begin Time: 11:58:20...
December 23, 2009 at 9:37 am
Our vendor was able to give us an example.
Call Begin Date: 12/03/2009
Call Begin Time: -100
Call End Date: 12/04/2009
Call End Time: 12:05:00...
December 23, 2009 at 7:23 am
Good & expected data in TIME_CALL_BEGAN field:
2009-12-15 09:30:19.000
Bad data: -09384593 (note: this is a made up number similar to what we encounter. It doesn't...
December 22, 2009 at 2:58 pm
If your situation was similar to ours, we only had a table name in the source cache database with no other information. We did a simple query: SELECT...
November 5, 2009 at 2:53 pm
Are you using ODBC? ODBC will need to be configured before using SSIS.
Do you see the ODBC connection in the Connection Manager? If so, when you...
November 5, 2009 at 7:25 am
Viewing 15 posts - 1 through 15 (of 28 total)