Viewing 15 posts - 21,316 through 21,330 (of 26,484 total)
Because you are using the MAX aggregate in the select statement you need a group by clause, try the following:
SELECT
C.ID AS client_eng_id,
...
April 28, 2009 at 10:10 am
I see several broken guantlets on the ground. As I asked for before, give us requirements, DDL for the staging tables and destination tables, processing rules for the data,...
April 28, 2009 at 10:00 am
You can drop your current function dbo.tvfGetNumbers and replace it with this:
create function dbo.tvfGetNumbers
(
@startnum tinyint
)
RETURNS TABLE
AS
return
(select @startnum as number union
select @startnum...
April 28, 2009 at 9:52 am
LMeyer (4/28/2009)
The field I want to add is ClientBuckets.Cinvlastinv (Last date of Invoice...
April 28, 2009 at 9:23 am
Were there any changes in the recovery model used by the databases during that time? If there was a change from FULL to SIMPLE and back to FULL, then...
April 28, 2009 at 9:19 am
I'm slightly confused, what are you trying to accomplish with this code?
April 28, 2009 at 9:13 am
I can't help you with winscp as I haven't used that particular product. You might try a search on SSC for winscp as i do remember seeing a few...
April 28, 2009 at 9:02 am
jo.owens (4/28/2009)
April 28, 2009 at 8:40 am
Kurt W. Zimmerman (4/28/2009)
April 28, 2009 at 8:16 am
Jeff,
I knew you'd have a bit to say here when you read it. I modifed his table def for RawData to match the def in his cursor routine.
Scott,
Yes, your...
April 27, 2009 at 10:26 pm
First, you probably don't need a cursor. Just based on your original post, however, there isn't much we can do to help.
First, I'd like to suggest that you read...
April 27, 2009 at 10:08 pm
I'm sorry, but I really can't follow what your are asking or what you are trying to accomplish. Nothing in your post really makes any sense to me. ...
April 27, 2009 at 9:51 pm
Flo...
Since there was no production problem I had, after this input I could show my chief some really great new things and it causes that some parts of our applications...
April 27, 2009 at 4:55 pm
twdavis (4/27/2009)
what I am looking for.
each load(LOAD_ID) has multiple stops (TMS_EXT_REF_ID) now...
April 27, 2009 at 4:15 pm
JJ B (4/27/2009)
the vendor has designed their application to force a row-by-row approach because they don't know any better. So as you say, you don't really have a choice other...
April 27, 2009 at 4:07 pm
Viewing 15 posts - 21,316 through 21,330 (of 26,484 total)