Viewing 15 posts - 106 through 120 (of 172 total)
One of the nicest things about the Case statement is you can use it whereever a scalar value is expected. You can nest them several levels deep. They are really...
May 9, 2006 at 11:48 am
sounds like you don't have permissions to write to the file under the credentials specified for the job.
May 9, 2006 at 11:37 am
As far as I know, an NVarChar is going to be limited to about 4000 unicode characters. Is your data/field going to be larger than that? If so, you will need...
May 9, 2006 at 9:56 am
first guess would be one or more of the rows in the BUSNAME column has a null in it. second guess would be that you are not finding some of...
May 9, 2006 at 9:36 am
I agree with PW above. I always import data to varchar fields and then run a series of data validation checks. You'd be surprised what passes for dates in some...
May 9, 2006 at 9:31 am
I think that limit is about 4030 characters for NVarChar, then you move to NText and have to start using READTEXT,WRITETEXT,UPDATETEXT. NText will give you 2GB bytes for the field.
May 8, 2006 at 12:45 pm
Its best to have the same version on both, if you can't do that, put the 2.8 on the server until you can upgrade the machines that talk to it. ...
May 5, 2006 at 10:09 am
We've been using MDAC 2.8 on all our systems - including servers - for a long time, no issues have shown up so for our mixed environment it went smoothly. ...
May 5, 2006 at 9:09 am
Access is always very picky on imports. So much that it often ends up doing things to you rather than for you. Check the data types on the columns on...
May 4, 2006 at 10:02 am
You might consider having the ftp process send a fifth file, use this fifth file as the indicator that your other four files have completed when the DTS runs. this...
May 4, 2006 at 9:08 am
You can do the same thing without dynamic sql
create proc myproc @unit nvarchar(10)=NULL,@invdate datetime=NULL,@invno nvarchar(10)=NULL
as
select * from mytable
where
(@unit = unit or @unit is null)
and
(@invdate = invoice_date or...
May 4, 2006 at 8:55 am
your issue is that the first loop moves the data pointer to the end of the list (EOF) and you didn't reset it for the second loop. Try something like...
April 25, 2006 at 9:29 am
my goof. i thought you might be working in a programming language and using a grid object.
April 24, 2006 at 10:06 am
Add another column to the grid that contains your ordering information, then hide that column.
April 24, 2006 at 9:48 am
in addition to using a UNC path name, set up an alias in your DNS so that if you hvae to move it you don't have to update the database...
March 13, 2006 at 1:37 pm
Viewing 15 posts - 106 through 120 (of 172 total)