473,385 Members | 1,593 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

using access to update a sharepoint (SPS 2003) list

team

so i have a nice little list in sharepoint.. about 15k items

i've got the simplest little join statement in access; and im trying to
UPDATE the sharepoint list via an access query.

so im joining between my access table and then sharepoint list and i
get the infamous 'numeric field overflow'.

i checked the range of everything

both columns are 'choice'-- ie they are prepopulated with the years
from 1960 to 2020

but it just looks like a pretty straight update clause and it's not
working.

1) i have a list named DEVELOPMENT RMTS: ALL Boxes or something; i
renamed this to SP_BOXES

2) a query that pulls from sharepoint; into an Access temp table the
min and max values for a year column (at the box level-- one level
above the file granularity)

SELECT Min(TF03_FID_STBN.[File Inclusion Date]) AS MINYEAR,
Max(TF03_FID_STBN.[File Inclusion Date]) AS MAXYEAR, TF03_FID_STBN.[ST
Box Number]
FROM TF03_FID_STBN
GROUP BY TF03_FID_STBN.[ST Box Number]
HAVING (((TF03_FID_STBN.[ST Box Number]) Is Not Null));

this is flashed from the query named 'QF04_FID_STBN_MINMAX' into a
table named 'TF04_FID_STBN_MINMAX'. When I say flash; i just wrap a
make-table statement on the outside of it and push it into a temp
table.

3) simple query that tries to update the sp list--- this just looks
like it's not working
UPDATE TF04_FID_STBN_MINMAX INNER JOIN SP_ALLBOXES ON
TF04_FID_STBN_MINMAX.[ST Box Number] = SP_ALLBOXES.[ST Box Number] SET
SP_ALLBOXES.[Record End Inclusion Date] = [MINYEAR],
SP_ALLBOXES.[Record Start Inclusion Date] = [MAXYEAR];
I wish i could give you guys more information.. i just need to get this
working; and it's driving me crazy

'numeric field overflow' is the error i get

Nov 18 '05 #1
7 8365

<aa*********@gmail.com> wrote in message
news:11*********************@g47g2000cwa.googlegro ups.com...
team

<snip>


I wish i could give you guys more information.. i just need to get this working; and it's driving me crazy
Aaron Kempf,

I do, too.

'numeric field overflow' is the error i get

This is more likely the result of differing underlying data types
than anything else (or, at least, IMO).

Posting the DDL would be much more useful.

You mentioned:
i checked the range of everything

both columns are 'choice'-- ie they are prepopulated with the
years from 1960 to 2020


Note that the above description does not relate any information
about the data types of the columns involved.

What is the exact data type of the columns in Sharepoint, and was is
the exact data type of the columns in MS Access?

Also, how are you connecting to Sharepoint? ADO? ODBC? ODBC
Direct? OLEDB?
Sincerely,

Chris O.
Nov 18 '05 #2
im connecting via Access linked tables. everythign is in access.

Access against Sharepoint-- these systems are supposed to be geared
towards beginners.

BUT THEY JUST DONT WORK CORRECTLY.

'numeric field overflow' isn't a valid debugging message.
i dont know or care what datatype the fields really are in under the
covers. if shit is numeric and shit is numeric; and it doesn't work
then it is microsofts fault.

perhaps i should change these fields to not be multiple choice; and
then change them back to mult choice after the records get in there?

i just wish that MS would quit the bullshit and make this system more
open. I mean-- they already have a wonderful system for SQL via MDB--
why do they need to add another layer of complexity to the equation?
so that they can make it a feature and sell it to us?

Microsoft you are a bunch of drunk dorks and i hope your company gets a
whuppin' soon. you abuse your customers, your employees..

and you dont fix bugs.

TO MICROSOFT
make the WHOLE bug-tracking system OPEN AND PUBLIC microsoft so that we
dont spend half of our days tracking down a bug that you guys already
know about.

AND START FIXING BUGS MICROSOFT, THEY'RE NOT FEATURES, THEY ARE
**BUGS**

piece of #### company god i hope you guys get slaughtered in the open
marketplace soon

Nov 18 '05 #3
Well, a diatribe against a company is just a great use of NG resources.

If you actually knew what you were doing then the error message 'numeric
field overflow' would point you in exactly the right direction, just as it
did Chris2 when he replied to your first post.

Oh well, if you actually get around to answering him, or asking for
clarification of his response so you can answer him, then you might get an
answer to your problem.
--
Terry Kreft

<aa*********@gmail.com> wrote in message
news:11**********************@f14g2000cwb.googlegr oups.com...
im connecting via Access linked tables. everythign is in access.

Access against Sharepoint-- these systems are supposed to be geared
towards beginners.

BUT THEY JUST DONT WORK CORRECTLY.

'numeric field overflow' isn't a valid debugging message.
i dont know or care what datatype the fields really are in under the
covers. if shit is numeric and shit is numeric; and it doesn't work
then it is microsofts fault.

perhaps i should change these fields to not be multiple choice; and
then change them back to mult choice after the records get in there?

i just wish that MS would quit the bullshit and make this system more
open. I mean-- they already have a wonderful system for SQL via MDB--
why do they need to add another layer of complexity to the equation?
so that they can make it a feature and sell it to us?

Microsoft you are a bunch of drunk dorks and i hope your company gets a
whuppin' soon. you abuse your customers, your employees..

and you dont fix bugs.

TO MICROSOFT
make the WHOLE bug-tracking system OPEN AND PUBLIC microsoft so that we
dont spend half of our days tracking down a bug that you guys already
know about.

AND START FIXING BUGS MICROSOFT, THEY'RE NOT FEATURES, THEY ARE
**BUGS**

piece of #### company god i hope you guys get slaughtered in the open
marketplace soon

Nov 19 '05 #4
It seems a "tolerance overflow" error has occurred here.

A good error handler might post all the relevant information here, and
suggest a "SLEEP" procedure (waking up after we have had a chance to
consider that).

I'm assuming the error occurs in "3) simple query" (else why would you
have carried your description that far?) and that you have included
parts 1) and 2) as background information?

I see that you say you have checked the range of everything and my
recollection of previous posts you have made in other groups suggest
that you are much too advanced to say that numeric to numeric should
work regardless of data type, unless there is something special that I
don't understand.

Can we assume that we are talking JET?

Can we assume that your machinations with Date and Year do not at any
time result in asking whatever engine we are using to put eight bytes
of date information into a four byte integer holder?

BTW, Aaron, when you are calm and rational, your capability shines
through. When you rant, it's quite a bit harder to discern.

It would be really helpful for me and probably for others as well, if
you wrote a nice little post on Access and SharePoint, about which I
know Zip. Yes, I could Google it, but some personal observations and
pointers would provide a motivation for doing so.

Nov 19 '05 #5
Terry

I know what im doing.

Sharepoint is buggy; Access is buggy.. and I dont know why in the hell
people buy this shit anymore. Microsoft has proved their incompetence.

all I'm doing is linking to a sharepoint list and running an update
query. I mean.. it's all that I'm doing.

And it doesnt work.. and the ONLY error message i've ever gotten out of
doign anything like this is 'numeric field overflow'

i think that microsoft did a jerry-rigged job of making access and
sharepoint work together; and I think that they need to fix it. Every
error i ever get is 'numeric field overflow'-- i mean.. come on
microsoft; give real debugging information

Nov 21 '05 #6
and im not ever really doing anything with date fields. it is all
strings.

-aaron

Nov 21 '05 #7
Aaron:

Check your list to see if there are any "check box" fields included. These fields are read only to MS Access and even if you are not updating them in your query, including them in the list will cause the error. Build a new list that does not include the check box field, and try the same update query on that list.

Frustrating experience, to be sure, when the error message misleads.

Charles
May 1 '06 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Jeff Connelly | last post by:
Could anyone give me any web pointers to information on connecting to SharePoint library files from C# code? I'd like to see if documents exists, and save "links" to them, whatever that might...
5
by: dave.stubbs | last post by:
Hi, We have a large web application, using ASP.NET/C# that runs quite happily on a Windows 2003 server under IIS, but when we install it on a server with sharepoint installed it keeps falling...
2
by: Gerry Hickman | last post by:
Hi, We are currently running VS.NET clients against a Windows 2000 server which has Frontpage server extensions; this means we can have teams of developers interacting on web applications from...
52
by: Neil | last post by:
We are running an Access 2000 MDB with a SQL 7 back end. Our network guy is upgrading to Windows Server 2003 and wants to upgrade Office and SQL Server at the same time. We're moving to SQL Server...
37
by: jasmith | last post by:
How will Access fair in a year? Two years? .... The new version of Access seems to service non programmers as a wizard interface to quickly create databases via a fancy wizard. Furthermore, why...
7
by: Craig Alexander Morrison | last post by:
Warning to Access Developers about ACE. DON'T use multivalued fields (MVF) they are worse than LookUp fields and SubDatasheets, in fact they (MVFs) are a logical progression in the dumbing down...
2
by: kashif | last post by:
Hello All, I am trying to crete alerts using SharePoint V3 API and so far I am able to create alerts but for some reason I could not figure out how to set AlertTemplate property on SPAlert object....
3
isben22
by: isben22 | last post by:
I am running SP Portal 2 and MS Access 2003. Our SPP has a LIST of events that many departments contribute to. I want to use MS Access to develop custom itineraries based off this calendar of...
2
by: rlsj | last post by:
I noticed EXCEL can automatically update a list from SharePoint services. Is there a quick and easy way to update a list from an Access query? Is it "better" to create the code in ACCESS...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.