PC Review


Reply
Thread Tools Rate Thread

Access linked to SharePoint

 
 
=?Utf-8?B?SVQgQ2hhbGxlbmdlZA==?=
Guest
Posts: n/a
 
      15th Nov 2006
To the people who know more than me...

I'm running SharePoint Service 2.0 and currently have linked tables in
Access 2003 pointing to 10 lists. The structure of these lists are exactly
the same.

I need a way to merge all the information from the 10 tables into 1 table
and make a way for this to happen on a daily at a given time.

Thank you in advanced for the help!

 
Reply With Quote
 
 
 
 
Larry Linson
Guest
Posts: n/a
 
      15th Nov 2006

"IT Challenged" <IT (E-Mail Removed)> wrote in message
news:9531726F-4A66-4493-A8D8-(E-Mail Removed)...
> To the people who know more than me...
>
> I'm running SharePoint Service 2.0 and currently have linked tables in
> Access 2003 pointing to 10 lists. The structure of these lists are exactly
> the same.
>
> I need a way to merge all the information from the 10 tables into 1 table
> and make a way for this to happen on a daily at a given time.


Are you familiar with UNION and UNION ALL Queries/SQL Statements? That will
allow you to concatenate the information from all ten (linked tables)...
then you could convert that into an Append or a Make-Table Query to create
the new table. As these would be stored Queries, it would be simple to
execute them from VBA code.

Larry Linson
Microsoft Access MVP


 
Reply With Quote
 
punjab_tom
Guest
Posts: n/a
 
      15th Nov 2006
I would reccomend staying away from MDB against Sharepoint; it is too
slow to be useful.

You should keep your data in SQL Server; and you can use SQL Server
tools in order to get to this data in a more logical format.

in other words; why worry about pulling 10 lists-- and jamming them
back into one table-- when they are already stored in one table on the
sharepoint side?

-Tom



Larry Linson wrote:
> "IT Challenged" <IT (E-Mail Removed)> wrote in message
> news:9531726F-4A66-4493-A8D8-(E-Mail Removed)...
> > To the people who know more than me...
> >
> > I'm running SharePoint Service 2.0 and currently have linked tables in
> > Access 2003 pointing to 10 lists. The structure of these lists are exactly
> > the same.
> >
> > I need a way to merge all the information from the 10 tables into 1 table
> > and make a way for this to happen on a daily at a given time.

>
> Are you familiar with UNION and UNION ALL Queries/SQL Statements? That will
> allow you to concatenate the information from all ten (linked tables)...
> then you could convert that into an Append or a Make-Table Query to create
> the new table. As these would be stored Queries, it would be simple to
> execute them from VBA code.
>
> Larry Linson
> Microsoft Access MVP


 
Reply With Quote
 
=?Utf-8?B?SVQgQ2hhbGxlbmdlZA==?=
Guest
Posts: n/a
 
      15th Nov 2006
Hello Punjab,

I guess you didn't read my name on this post... =)

"punjab_tom" wrote:

> I would reccomend staying away from MDB against Sharepoint; it is too
> slow to be useful.
>
> You should keep your data in SQL Server; and you can use SQL Server
> tools in order to get to this data in a more logical format.
>
> in other words; why worry about pulling 10 lists-- and jamming them
> back into one table-- when they are already stored in one table on the
> sharepoint side?
>
> -Tom
>
>
>
> Larry Linson wrote:
> > "IT Challenged" <IT (E-Mail Removed)> wrote in message
> > news:9531726F-4A66-4493-A8D8-(E-Mail Removed)...
> > > To the people who know more than me...
> > >
> > > I'm running SharePoint Service 2.0 and currently have linked tables in
> > > Access 2003 pointing to 10 lists. The structure of these lists are exactly
> > > the same.
> > >
> > > I need a way to merge all the information from the 10 tables into 1 table
> > > and make a way for this to happen on a daily at a given time.

> >
> > Are you familiar with UNION and UNION ALL Queries/SQL Statements? That will
> > allow you to concatenate the information from all ten (linked tables)...
> > then you could convert that into an Append or a Make-Table Query to create
> > the new table. As these would be stored Queries, it would be simple to
> > execute them from VBA code.
> >
> > Larry Linson
> > Microsoft Access MVP

>
>

 
Reply With Quote
 
=?Utf-8?B?SVQgQ2hhbGxlbmdlZA==?=
Guest
Posts: n/a
 
      15th Nov 2006
Thanks Larry!!! I'm researching these types of queries and should be able to
implement your suggestions. Your reply was exactly what I was looking for!

"Larry Linson" wrote:

>
> "IT Challenged" <IT (E-Mail Removed)> wrote in message
> news:9531726F-4A66-4493-A8D8-(E-Mail Removed)...
> > To the people who know more than me...
> >
> > I'm running SharePoint Service 2.0 and currently have linked tables in
> > Access 2003 pointing to 10 lists. The structure of these lists are exactly
> > the same.
> >
> > I need a way to merge all the information from the 10 tables into 1 table
> > and make a way for this to happen on a daily at a given time.

>
> Are you familiar with UNION and UNION ALL Queries/SQL Statements? That will
> allow you to concatenate the information from all ten (linked tables)...
> then you could convert that into an Append or a Make-Table Query to create
> the new table. As these would be stored Queries, it would be simple to
> execute them from VBA code.
>
> Larry Linson
> Microsoft Access MVP
>
>
>

 
Reply With Quote
 
punjab_tom
Guest
Posts: n/a
 
      15th Nov 2006
what do you talk of?

-Tom


IT Challenged wrote:
> Hello Punjab,
>
> I guess you didn't read my name on this post... =)
>
> "punjab_tom" wrote:
>
> > I would reccomend staying away from MDB against Sharepoint; it is too
> > slow to be useful.
> >
> > You should keep your data in SQL Server; and you can use SQL Server
> > tools in order to get to this data in a more logical format.
> >
> > in other words; why worry about pulling 10 lists-- and jamming them
> > back into one table-- when they are already stored in one table on the
> > sharepoint side?
> >
> > -Tom
> >
> >
> >
> > Larry Linson wrote:
> > > "IT Challenged" <IT (E-Mail Removed)> wrote in message
> > > news:9531726F-4A66-4493-A8D8-(E-Mail Removed)...
> > > > To the people who know more than me...
> > > >
> > > > I'm running SharePoint Service 2.0 and currently have linked tables in
> > > > Access 2003 pointing to 10 lists. The structure of these lists are exactly
> > > > the same.
> > > >
> > > > I need a way to merge all the information from the 10 tables into 1 table
> > > > and make a way for this to happen on a daily at a given time.
> > >
> > > Are you familiar with UNION and UNION ALL Queries/SQL Statements? That will
> > > allow you to concatenate the information from all ten (linked tables)...
> > > then you could convert that into an Append or a Make-Table Query to create
> > > the new table. As these would be stored Queries, it would be simple to
> > > execute them from VBA code.
> > >
> > > Larry Linson
> > > Microsoft Access MVP

> >
> >


 
Reply With Quote
 
Granny Spitz via AccessMonster.com
Guest
Posts: n/a
 
      15th Nov 2006
IT Challenged wrote:
> Hello Punjab,
>
> I guess you didn't read my name on this post... =)
>
> "punjab_tom" wrote:
>
>> I would reccomend staying away from MDB against Sharepoint; it is too
>> slow to be useful.
>>
>> You should keep your data in SQL Server; and you can use SQL Server
>> tools in order to get to this data in a more logical format.


Don't mind him, hon. His solution for everything is to use ADPs and SQL
Server. Cell phone battery died? Use SQL Server. Got indigestion? Switch
to ADPs. Neighbor's dog kept you up all night barking? Should've used SQL
Server!

--
Message posted via AccessMonster.com
http://www.accessmonster.com/Uwe/For...ccess/200611/1

 
Reply With Quote
 
=?Utf-8?B?SVQgQ2hhbGxlbmdlZA==?=
Guest
Posts: n/a
 
      15th Nov 2006
Thanks Granny, we are all learning at our own pace. I have SQL query and
design classes scheduled for February!!! Yay!

"Granny Spitz via AccessMonster.com" wrote:

> IT Challenged wrote:
> > Hello Punjab,
> >
> > I guess you didn't read my name on this post... =)
> >
> > "punjab_tom" wrote:
> >
> >> I would reccomend staying away from MDB against Sharepoint; it is too
> >> slow to be useful.
> >>
> >> You should keep your data in SQL Server; and you can use SQL Server
> >> tools in order to get to this data in a more logical format.

>
> Don't mind him, hon. His solution for everything is to use ADPs and SQL
> Server. Cell phone battery died? Use SQL Server. Got indigestion? Switch
> to ADPs. Neighbor's dog kept you up all night barking? Should've used SQL
> Server!
>
> --
> Message posted via AccessMonster.com
> http://www.accessmonster.com/Uwe/For...ccess/200611/1
>
>

 
Reply With Quote
 
=?Utf-8?B?SVQgQ2hhbGxlbmdlZA==?=
Guest
Posts: n/a
 
      15th Nov 2006
Hi Tom, we are implementing SharePoint Portal early next year which will use
our SQL backend. I'm still learning SQL and how to query so for now, i'll use
Access. Thank you for your post!!!

"punjab_tom" wrote:

> I would reccomend staying away from MDB against Sharepoint; it is too
> slow to be useful.
>
> You should keep your data in SQL Server; and you can use SQL Server
> tools in order to get to this data in a more logical format.
>
> in other words; why worry about pulling 10 lists-- and jamming them
> back into one table-- when they are already stored in one table on the
> sharepoint side?
>
> -Tom
>
>
>
> Larry Linson wrote:
> > "IT Challenged" <IT (E-Mail Removed)> wrote in message
> > news:9531726F-4A66-4493-A8D8-(E-Mail Removed)...
> > > To the people who know more than me...
> > >
> > > I'm running SharePoint Service 2.0 and currently have linked tables in
> > > Access 2003 pointing to 10 lists. The structure of these lists are exactly
> > > the same.
> > >
> > > I need a way to merge all the information from the 10 tables into 1 table
> > > and make a way for this to happen on a daily at a given time.

> >
> > Are you familiar with UNION and UNION ALL Queries/SQL Statements? That will
> > allow you to concatenate the information from all ten (linked tables)...
> > then you could convert that into an Append or a Make-Table Query to create
> > the new table. As these would be stored Queries, it would be simple to
> > execute them from VBA code.
> >
> > Larry Linson
> > Microsoft Access MVP

>
>

 
Reply With Quote
 
Granny Spitz via AccessMonster.com
Guest
Posts: n/a
 
      15th Nov 2006
IT Challenged wrote:
> Thanks Granny, we are all learning at our own pace. I have SQL query and
> design classes scheduled for February!!! Yay!


You'll probably find it challenging but once you get the hang of it, you'll
find out how powerful it is ... and *you've* got that power at your
fingertips! Best of luck to you.

--
Message posted via AccessMonster.com
http://www.accessmonster.com/Uwe/For...ccess/200611/1

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Error 3001 in Access 2007 adding Attachment to linked Sharepoint t msumrell Microsoft Access VBA Modules 0 28th Aug 2009 04:04 PM
Problem with Access and linked List in Sharepoint ttaylor993 Microsoft Access External Data 5 11th Mar 2009 03:54 AM
Linked Sharepoint table permissions - Access 2003 really_confused Microsoft Access External Data 1 2nd Feb 2008 09:31 PM
Access linked tables to sharepoint =?Utf-8?B?VW5pcXVl?= Microsoft Access External Data 0 3rd May 2006 10:19 PM
access mdb against linked sharepoint list crashes aaron.kempf@gmail.com Microsoft Access 0 2nd Dec 2005 08:54 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 07:40 PM.