473,387 Members | 1,891 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,387 software developers and data experts.

Online query analzyer for Access?

What is the best way to create new queries and/or modify existing tables
within an online access database. At the moment, I am periodically
downloading the db and making alterations.

But, I have heard others on the list say they use a query analayzer built on
a <form> where they execute SQL statements....

Is this the correct way to go?

- Jason
Jul 19 '05 #1
7 1471
Here is an online example.
http://rtfm.atrax.co.uk/infinitemonk...es/asp/908.asp

As far as what is best to do, that's open for debate. I personally use
something simliar to the example above. Some people swear by on-the-fly
modifications like this, and others like to do it the hard way. I have no
problem using online mods like this for a site that is using Access, because
you know that it's not going to be a crazy-busy site or anything.

Ray at work

"jason" <ja***@catamaranco.com> wrote in message
news:OZ**************@TK2MSFTNGP09.phx.gbl...
What is the best way to create new queries and/or modify existing tables
within an online access database. At the moment, I am periodically
downloading the db and making alterations.

But, I have heard others on the list say they use a query analayzer built on a <form> where they execute SQL statements....

Is this the correct way to go?

- Jason

Jul 19 '05 #2
> What is the best way to create new queries

Issue CREATE VIEW etc. statements against a connection object?
and/or modify existing tables
Issue ALTER TABLE etc. statements against a connection object?
But, I have heard others on the list say they use a query analayzer built on a <form> where they execute SQL statements....


Maybe they were talking about some of these tools, many of which apply to
Access... http://www.aspfaq.com/2442
Jul 19 '05 #3
Uh, oh. Here we go again.... ;)

"Ray at <%=sLocation%>" <myfirstname at lane34 dot com> wrote in message
news:%2****************@TK2MSFTNGP11.phx.gbl...
Here is an online example.
http://rtfm.atrax.co.uk/infinitemonk...es/asp/908.asp

As far as what is best to do, that's open for debate. I personally use
something simliar to the example above. Some people swear by on-the-fly
modifications like this, and others like to do it the hard way. I have no
problem using online mods like this for a site that is using Access, because you know that it's not going to be a crazy-busy site or anything.

Ray at work

"jason" <ja***@catamaranco.com> wrote in message
news:OZ**************@TK2MSFTNGP09.phx.gbl...
What is the best way to create new queries and/or modify existing tables
within an online access database. At the moment, I am periodically
downloading the db and making alterations.

But, I have heard others on the list say they use a query analayzer
built on
a <form> where they execute SQL statements....

Is this the correct way to go?

- Jason


Jul 19 '05 #4
I am still bitter about that. That whole thing really burns me up. That
list kills me. I just feel like it is dicatorishly dominated by a couple of
people who often misguide those with less knowledge and make them think that
there is only one answer to each question. I really think that list is
doing a dis-service to many learning ASP'ers. That's not right, man!

Ray at work

"TomB" <sh*****@hotmail.com> wrote in message
news:e$**************@TK2MSFTNGP10.phx.gbl...
Uh, oh. Here we go again.... ;)

Jul 19 '05 #5
Well, the good thing is, Aaron suggests the same thing as you, and he's a
pretty smart guy (just don't tell him I said that)

"Ray at <%=sLocation%>" <myfirstname at lane34 dot com> wrote in message
news:uu**************@TK2MSFTNGP10.phx.gbl...
I am still bitter about that. That whole thing really burns me up. That
list kills me. I just feel like it is dicatorishly dominated by a couple of people who often misguide those with less knowledge and make them think that there is only one answer to each question. I really think that list is
doing a dis-service to many learning ASP'ers. That's not right, man!

Ray at work

"TomB" <sh*****@hotmail.com> wrote in message
news:e$**************@TK2MSFTNGP10.phx.gbl...
Uh, oh. Here we go again.... ;)


Jul 19 '05 #6
Aaron learned that from me, just like most of the other things he knows.
Oh, wait, I was still using a Smith Corona typewriter when he started coding
ASP pages. I must have this backwards. :]

Ray at work

"TomB" <sh*****@hotmail.com> wrote in message
news:uO**************@TK2MSFTNGP09.phx.gbl...
Well, the good thing is, Aaron suggests the same thing as you, and he's a
pretty smart guy (just don't tell him I said that)

"Ray at <%=sLocation%>" <myfirstname at lane34 dot com> wrote in message
news:uu**************@TK2MSFTNGP10.phx.gbl...
I am still bitter about that. That whole thing really burns me up. That list kills me. I just feel like it is dicatorishly dominated by a
couple of
people who often misguide those with less knowledge and make them think

that
there is only one answer to each question. I really think that list is
doing a dis-service to many learning ASP'ers. That's not right, man!

Ray at work

"TomB" <sh*****@hotmail.com> wrote in message
news:e$**************@TK2MSFTNGP10.phx.gbl...
Uh, oh. Here we go again.... ;)



Jul 19 '05 #7
Great - that looks like a very usable solution to me. One thing that
puzzles me about the Atrax solution is a reference to:
"...I create a Windows Script Component (by replacing out the path to the
site's main WSC object), and use that to fire the query. "

Is he actually firing this analyzer off his own local server thereby
allowing the use of wsh? If so, how does one accomplish this off a remote
host...

Sorry, I am probably missing something here - the code is kind of complex!

Thanks
Jason

"Ray at <%=sLocation%>" <myfirstname at lane34 dot com> wrote in message
news:#U**************@TK2MSFTNGP11.phx.gbl...
Here is an online example.
http://rtfm.atrax.co.uk/infinitemonk...es/asp/908.asp

As far as what is best to do, that's open for debate. I personally use
something simliar to the example above. Some people swear by on-the-fly
modifications like this, and others like to do it the hard way. I have no
problem using online mods like this for a site that is using Access, because you know that it's not going to be a crazy-busy site or anything.

Ray at work

"jason" <ja***@catamaranco.com> wrote in message
news:OZ**************@TK2MSFTNGP09.phx.gbl...
What is the best way to create new queries and/or modify existing tables
within an online access database. At the moment, I am periodically
downloading the db and making alterations.

But, I have heard others on the list say they use a query analayzer
built on
a <form> where they execute SQL statements....

Is this the correct way to go?

- Jason


Jul 19 '05 #8

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

Similar topics

24
by: jason | last post by:
Hi Ray...a while ago you explained an elegant solution to enable me to CREATE and EDIT existing tables and queries inside my online access 2000 database.... could you provide refresher links on...
1
by: John Morgan | last post by:
I have an online SQL Server database provided by an ISP. I do not have permission to create a backup device and I understand this is normal practice. I am not using Enterprise Manager to...
9
by: bluedolphin | last post by:
Hello All: I have been brought onboard to help on a project that had some performance problems last year. I have taken some steps to address the issues in question, but a huge question mark...
6
by: Raj | last post by:
How can we do an online restore of a tablespace using the incremental backup's? we are on a partitioned database... Also, how could we use backup copy made by the load (using the copy to option...
0
by: raylopez99 | last post by:
10 years ago, the below was written (see very end, after my signature RL). What, if anything, has changed? I have Access 2003 and soon Access 2007 on a Windows XP Professional or Windows...
3
by: simon.robin.jackson | last post by:
Ok, please bare with me, im not a web developer. I am an intermediate Access database user. We collect data for a company that has 20 monitoring stations. Once a month they collate all the data...
1
by: csgraham74 | last post by:
Hi, I was wondering if someone could help advise me. Basically i have a client who wants to upgrade from a desktop ms access solution to a web based system using MS SQL Server 2005. ...
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: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
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: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
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
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

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.