473,624 Members | 2,258 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Translate Access queries to ASP

Hi,

I'm still confused about my queries, I want to do something is ASP that is
easily done in Access. I'll post the Access queries below as a reference.
The main idea is that the queries depend on each other in a hierarchical
manner. It all works fine in Access, but in the last query
(Qrylevel3CostT otals) there's a criteria which I would like to set from an
HTML form and thats where I am confused! How do I make this work in an ASP
solution?
QryLevel1CostTo tals:

SELECT QryNodesParents .ParentID, QryNodesParents .ParentLabel,
Sum(QryLevel2Co stTotals.SumOfS umOfBudget) AS SumOfSumOfSumOf Budget,
Sum(QryLevel2Co stTotals.SumOfS umOfVariation) AS SumOfSumOfSumOf Variation,
Sum(QryLevel2Co stTotals.SumOfL astOfCommitted) AS SumOfSumOfLastO fCommitted,
Sum(QryLevel2Co stTotals.SumOfL astOfActual) AS SumOfSumOfLastO fActual,
Sum(QryLevel2Co stTotals.SumOfL astOfWork) AS SumOfSumOfLastO fWork,
Sum(QryLevel2Co stTotals.SumOfL astOfAccrual) AS SumOfSumOfLastO fAccrual
FROM QryLevel2CostTo tals INNER JOIN QryNodesParents ON
QryLevel2CostTo tals.TblNodeID = QryNodesParents .TblNodeID
GROUP BY QryNodesParents .ParentID, QryNodesParents .ParentLabel;

QryLevel2CostTo tals:

SELECT TblNode.TblNode ID, TblNode.NodeLab el,
Sum(QryLevel3Co stTotals.SumOfB udget) AS SumOfSumOfBudge t,
Sum(QryLevel3Co stTotals.SumOfV ariation) AS SumOfSumOfVaria tion,
Sum(QryLevel3Co stTotals.LastOf Committed) AS SumOfLastOfComm itted,
Sum(QryLevel3Co stTotals.LastOf Actual) AS SumOfLastOfActu al,
Sum(QryLevel3Co stTotals.LastOf Work) AS SumOfLastOfWork ,
Sum(QryLevel3Co stTotals.LastOf Accrual) AS SumOfLastOfAccr ual,
QryLevel3CostTo tals.LastOfEntr yDate
FROM TblNode INNER JOIN QryLevel3CostTo tals ON TblNode.TblNode ID =
QryLevel3CostTo tals.TblNodeID
GROUP BY TblNode.TblNode ID, TblNode.NodeLab el,
QryLevel3CostTo tals.LastOfEntr yDate;

QryLevel3CostTo tals:

SELECT TblNode.TblNode ID, TblNode.NodeLab el, TblMainEntry.cb sID,
TblCBSandBudget .CBSdescription , Sum(TblCBSandBu dget.Budget) AS SumOfBudget,
Sum(IIf(IsNull([TblMainEntry].[Variation]),0,[TblMainEntry].[Variation])) AS
SumOfVariation,
Last(IIf(IsNull ([TblMainEntry].[Committed]),0,[TblMainEntry].[Committed]))
AS LastOfCommitted ,
Last(IIf(IsNull ([TblMainEntry].[Actual]),0,[TblMainEntry].[Actual])) AS
LastOfActual,
Last(IIf(IsNull ([TblMainEntry].[Worked]),0,[TblMainEntry].[Worked])) AS
LastOfWork,
Last(IIf(IsNull ([TblMainEntry].[Accrual]),0,[TblMainEntry].[Accrual])) AS
LastOfAccrual,
Last(IIf(IsNull ([TblMainEntry].[EntryDate]),0,[TblMainEntry].[EntryDate]))
AS LastOfEntryDate
FROM (TblMainEntry RIGHT JOIN TblCBSandBudget ON TblMainEntry.cb sID =
TblCBSandBudget .cbsID) INNER JOIN TblNode ON TblCBSandBudget .NodeID =
TblNode.TblNode ID
GROUP BY TblNode.TblNode ID, TblNode.NodeLab el, TblMainEntry.cb sID,
TblCBSandBudget .CBSdescription
HAVING
(((Last(IIf(IsN ull([TblMainEntry].[EntryDate]),0,[TblMainEntry].[EntryDate])
))<#9/1/2003#));
Jul 19 '05 #1
10 2336
Thanks Bob,

I Think this look pretty good, although I'm not that familiar with the ASP
yet, I am used to setting up my connections using the following syntax:

Dim rsLevel1Totals
Dim rsLevel1Totals_ numRows

Set rsLevel1Totals = Server.CreateOb ject("ADODB.Rec ordset")
rsLevel1Totals. ActiveConnectio n = MM_ICR_STRING
rsLevel1TotalsQ ry = "SELECT * FROM QryLevel1CostTo tals"
rsLevel1Totals. CursorType = 0
rsLevel1Totals. CursorLocation = 2
rsLevel1Totals. LockType = 1
rsLevel1Totals. Open (rsLevel1Totals Qry dEntryDate, rsLeve11Totals)

I've put your code in the last line, but I get an error. Can you post me an
example of how you would do it?

Thanks,
Marco
"Bob Barrows" <re*******@yaho o.com> schreef in bericht
news:ub******** *****@TK2MSFTNG P11.phx.gbl...
Replace this:
))<#9/1/2003#));
with this:
))<[pDate]));

Create and open a connection object. I'll assume you name it "cn". Then do
this:

dim cn, rs, dEntryDate
dEntryDate=cDat e("9/1/2003")
cn.QryLevel2Cos tTotals dEntryDate, rs

And you're done.

HTH,
Bob Barrows
Marco Alting wrote:
Hi,

I'm still confused about my queries, I want to do something is ASP
that is easily done in Access. I'll post the Access queries below as
a reference. The main idea is that the queries depend on each other
in a hierarchical manner. It all works fine in Access, but in the
last query (Qrylevel3CostT otals) there's a criteria which I would
like to set from an HTML form and thats where I am confused! How do I
make this work in an ASP solution?
QryLevel1CostTo tals:

SELECT QryNodesParents .ParentID, QryNodesParents .ParentLabel,
Sum(QryLevel2Co stTotals.SumOfS umOfBudget) AS SumOfSumOfSumOf Budget,
Sum(QryLevel2Co stTotals.SumOfS umOfVariation) AS
SumOfSumOfSumOf Variation,
Sum(QryLevel2Co stTotals.SumOfL astOfCommitted) AS
SumOfSumOfLastO fCommitted, Sum(QryLevel2Co stTotals.SumOfL astOfActual)
AS SumOfSumOfLastO fActual, Sum(QryLevel2Co stTotals.SumOfL astOfWork)
AS SumOfSumOfLastO fWork, Sum(QryLevel2Co stTotals.SumOfL astOfAccrual)
AS SumOfSumOfLastO fAccrual
FROM QryLevel2CostTo tals INNER JOIN QryNodesParents ON
QryLevel2CostTo tals.TblNodeID = QryNodesParents .TblNodeID
GROUP BY QryNodesParents .ParentID, QryNodesParents .ParentLabel;

QryLevel2CostTo tals:

SELECT TblNode.TblNode ID, TblNode.NodeLab el,
Sum(QryLevel3Co stTotals.SumOfB udget) AS SumOfSumOfBudge t,
Sum(QryLevel3Co stTotals.SumOfV ariation) AS SumOfSumOfVaria tion,
Sum(QryLevel3Co stTotals.LastOf Committed) AS SumOfLastOfComm itted,
Sum(QryLevel3Co stTotals.LastOf Actual) AS SumOfLastOfActu al,
Sum(QryLevel3Co stTotals.LastOf Work) AS SumOfLastOfWork ,
Sum(QryLevel3Co stTotals.LastOf Accrual) AS SumOfLastOfAccr ual,
QryLevel3CostTo tals.LastOfEntr yDate
FROM TblNode INNER JOIN QryLevel3CostTo tals ON TblNode.TblNode ID =
QryLevel3CostTo tals.TblNodeID
GROUP BY TblNode.TblNode ID, TblNode.NodeLab el,
QryLevel3CostTo tals.LastOfEntr yDate;

QryLevel3CostTo tals:

SELECT TblNode.TblNode ID, TblNode.NodeLab el, TblMainEntry.cb sID,
TblCBSandBudget .CBSdescription , Sum(TblCBSandBu dget.Budget) AS
SumOfBudget,
Sum(IIf(IsNull([TblMainEntry].[Variation]),0,[TblMainEntry].[Variation])) AS SumOfVariation,
Last(IIf(IsNull ([TblMainEntry].[Committed]),0,[TblMainEntry].[Committed])) AS LastOfCommitted ,
Last(IIf(IsNull ([TblMainEntry].[Actual]),0,[TblMainEntry].[Actual]))
AS LastOfActual,
Last(IIf(IsNull ([TblMainEntry].[Worked]),0,[TblMainEntry].[Worked]))
AS LastOfWork,
Last(IIf(IsNull ([TblMainEntry].[Accrual]),0,[TblMainEntry].[Accrual]))
AS LastOfAccrual,
Last(IIf(IsNull ([TblMainEntry].[EntryDate]),0,[TblMainEntry].[EntryDate])) AS LastOfEntryDate
FROM (TblMainEntry RIGHT JOIN TblCBSandBudget ON TblMainEntry.cb sID =
TblCBSandBudget .cbsID) INNER JOIN TblNode ON TblCBSandBudget .NodeID =
TblNode.TblNode ID
GROUP BY TblNode.TblNode ID, TblNode.NodeLab el, TblMainEntry.cb sID,
TblCBSandBudget .CBSdescription
HAVING

(((Last(IIf(IsN ull([TblMainEntry].[EntryDate]),0,[TblMainEntry].[EntryDate])
))<#9/1/2003#));


Jul 19 '05 #2
<<<<AS SumOfSumOfSumOf Budget>>>>
I'm a SumOf Of a SumOf a Sailor
Apologies to JImmy Buffet.....

Sorry :>)

Bob Lehmann

"Marco Alting" <ma***@alting-multimedia.nl> wrote in message
news:7j******** **************@ amsnews03.chell o.com...
Hi,

I'm still confused about my queries, I want to do something is ASP that is
easily done in Access. I'll post the Access queries below as a reference.
The main idea is that the queries depend on each other in a hierarchical
manner. It all works fine in Access, but in the last query
(Qrylevel3CostT otals) there's a criteria which I would like to set from an
HTML form and thats where I am confused! How do I make this work in an ASP
solution?
QryLevel1CostTo tals:

SELECT QryNodesParents .ParentID, QryNodesParents .ParentLabel,
Sum(QryLevel2Co stTotals.SumOfS umOfBudget) AS SumOfSumOfSumOf Budget,
Sum(QryLevel2Co stTotals.SumOfS umOfVariation) AS SumOfSumOfSumOf Variation,
Sum(QryLevel2Co stTotals.SumOfL astOfCommitted) AS SumOfSumOfLastO fCommitted, Sum(QryLevel2Co stTotals.SumOfL astOfActual) AS SumOfSumOfLastO fActual,
Sum(QryLevel2Co stTotals.SumOfL astOfWork) AS SumOfSumOfLastO fWork,
Sum(QryLevel2Co stTotals.SumOfL astOfAccrual) AS SumOfSumOfLastO fAccrual
FROM QryLevel2CostTo tals INNER JOIN QryNodesParents ON
QryLevel2CostTo tals.TblNodeID = QryNodesParents .TblNodeID
GROUP BY QryNodesParents .ParentID, QryNodesParents .ParentLabel;

QryLevel2CostTo tals:

SELECT TblNode.TblNode ID, TblNode.NodeLab el,
Sum(QryLevel3Co stTotals.SumOfB udget) AS SumOfSumOfBudge t,
Sum(QryLevel3Co stTotals.SumOfV ariation) AS SumOfSumOfVaria tion,
Sum(QryLevel3Co stTotals.LastOf Committed) AS SumOfLastOfComm itted,
Sum(QryLevel3Co stTotals.LastOf Actual) AS SumOfLastOfActu al,
Sum(QryLevel3Co stTotals.LastOf Work) AS SumOfLastOfWork ,
Sum(QryLevel3Co stTotals.LastOf Accrual) AS SumOfLastOfAccr ual,
QryLevel3CostTo tals.LastOfEntr yDate
FROM TblNode INNER JOIN QryLevel3CostTo tals ON TblNode.TblNode ID =
QryLevel3CostTo tals.TblNodeID
GROUP BY TblNode.TblNode ID, TblNode.NodeLab el,
QryLevel3CostTo tals.LastOfEntr yDate;

QryLevel3CostTo tals:

SELECT TblNode.TblNode ID, TblNode.NodeLab el, TblMainEntry.cb sID,
TblCBSandBudget .CBSdescription , Sum(TblCBSandBu dget.Budget) AS SumOfBudget, Sum(IIf(IsNull([TblMainEntry].[Variation]),0,[TblMainEntry].[Variation])) AS SumOfVariation,
Last(IIf(IsNull ([TblMainEntry].[Committed]),0,[TblMainEntry].[Committed]))
AS LastOfCommitted ,
Last(IIf(IsNull ([TblMainEntry].[Actual]),0,[TblMainEntry].[Actual])) AS
LastOfActual,
Last(IIf(IsNull ([TblMainEntry].[Worked]),0,[TblMainEntry].[Worked])) AS
LastOfWork,
Last(IIf(IsNull ([TblMainEntry].[Accrual]),0,[TblMainEntry].[Accrual])) AS
LastOfAccrual,
Last(IIf(IsNull ([TblMainEntry].[EntryDate]),0,[TblMainEntry].[EntryDate]))
AS LastOfEntryDate
FROM (TblMainEntry RIGHT JOIN TblCBSandBudget ON TblMainEntry.cb sID =
TblCBSandBudget .cbsID) INNER JOIN TblNode ON TblCBSandBudget .NodeID =
TblNode.TblNode ID
GROUP BY TblNode.TblNode ID, TblNode.NodeLab el, TblMainEntry.cb sID,
TblCBSandBudget .CBSdescription
HAVING
(((Last(IIf(IsN ull([TblMainEntry].[EntryDate]),0,[TblMainEntry].[EntryDate]) ))<#9/1/2003#));

Jul 19 '05 #3
Marco Alting wrote:
Thanks Bob,

I Think this look pretty good, although I'm not that familiar with
the ASP yet, I am used to setting up my connections using the
following syntax:
Well please get used to not doing it this way. Always open a connection
object and use it to perform your database activities.

Dim rsLevel1Totals
Dim rsLevel1Totals_ numRows

Set rsLevel1Totals = Server.CreateOb ject("ADODB.Rec ordset")
Get rid of this line: rsLevel1Totals. ActiveConnectio n = MM_ICR_STRING
Instead. create and open a connection object using this connection string:
dim cn
set cn=server.creat eobject("adodb. connection")
cn.open MM_ICR_STRING

Get rid of this line: rsLevel1TotalsQ ry = "SELECT * FROM QryLevel1CostTo tals"
rsLevel1Totals. CursorType = 0
rsLevel1Totals. CursorLocation = 2
rsLevel1Totals. LockType = 1
Get rid of this line: rsLevel1Totals. Open (rsLevel1Totals Qry dEntryDate, rsLeve11Totals)


Replace it with

cn.QryLevel1Cos tTotals rsLevel1Totals

HTH,
Bob Barrows
Jul 19 '05 #4
Bob Barrows wrote:
cn.QryLevel1Cos tTotals rsLevel1Totals

This should be:
cn.QryLevel1Cos tTotals dEntryDate, rsLevel1Totals
Jul 19 '05 #5
Thanks Bob,

I implemented all of what you written, and it seems to bel working (sort
of). Because the HTML table generated from the queries still shows all
records... Could this have something to do with the way we set the variable:
dEntryDate=cDat e("9/1/2003")?

Regards,
Marco

"Bob Barrows" <re*******@yaho o.com> schreef in bericht
news:OS******** *****@TK2MSFTNG P11.phx.gbl...
Bob Barrows wrote:
cn.QryLevel1Cos tTotals rsLevel1Totals

This should be:
cn.QryLevel1Cos tTotals dEntryDate, rsLevel1Totals

Jul 19 '05 #6
Marco Alting wrote:
Thanks Bob,

I implemented all of what you written, and it seems to bel working
(sort of). Because the HTML table generated from the queries still
shows all records... Could this have something to do with the way we
set the variable: dEntryDate=cDat e("9/1/2003")?

I don't know. what happens when you test the query in Access?
Jul 19 '05 #7
Another thing that now comes up, is that my MoveFirst() doesn't work
anymore, what could be wrong there?
"Bob Barrows" <re*******@yaho o.com> schreef in bericht
news:OS******** *****@TK2MSFTNG P11.phx.gbl...
Bob Barrows wrote:
cn.QryLevel1Cos tTotals rsLevel1Totals

This should be:
cn.QryLevel1Cos tTotals dEntryDate, rsLevel1Totals

Jul 19 '05 #8
It works fine in Access, but I think I solved that now, the problem now is I
think in the cursorType, because my MoveFirst doesn't work anymore...
"Bob Barrows" <re*******@yaho o.com> schreef in bericht
news:eK******** ******@TK2MSFTN GP09.phx.gbl...
Marco Alting wrote:
Thanks Bob,

I implemented all of what you written, and it seems to bel working
(sort of). Because the HTML table generated from the queries still
shows all records... Could this have something to do with the way we
set the variable: dEntryDate=cDat e("9/1/2003")?

I don't know. what happens when you test the query in Access?

Jul 19 '05 #9
Take this part
Set rsLevel1Totals = Server.CreateOb ject("ADODB.Rec ordset")
rsLevel1Totals. ActiveConnectio n = MM_ICR_STRING
rsLevel1TotalsQ ry = "SELECT * FROM QryLevel1CostTo tals"
rsLevel1Totals. CursorType = 0
rsLevel1Totals. CursorLocation = 2
rsLevel1Totals. LockType = 1
rsLevel1Totals. Open (rsLevel1Totals Qry dEntryDate, rsLeve11Totals)

and change it to.....

Set cn=CreateObject ("ADODB.Connect ion")
CN.Open MM_ICR_STRING
dEntryDate=cDat e("9/1/2003")
cn.QryLevel2Cos tTotals dEntryDate, rsLevel1Totals
this is a cool feature of the connection object. It'll take a query/stored
procedure as though it was a subroutine. Taking the query parameters as
subroutine parameters, and the final parameter is the recordset to fill.

So in your case you have a query called QryLevel2CostTo tals that takes one
parameter, dEntryDate, and returns a recordset called rsLevel1Totals

"Marco Alting" <ma***@alting-multimedia.nl> wrote in message
news:CO******** **************@ amsnews03.chell o.com...
Thanks Bob,

I Think this look pretty good, although I'm not that familiar with the ASP
yet, I am used to setting up my connections using the following syntax:

Dim rsLevel1Totals
Dim rsLevel1Totals_ numRows

Set rsLevel1Totals = Server.CreateOb ject("ADODB.Rec ordset")
rsLevel1Totals. ActiveConnectio n = MM_ICR_STRING
rsLevel1TotalsQ ry = "SELECT * FROM QryLevel1CostTo tals"
rsLevel1Totals. CursorType = 0
rsLevel1Totals. CursorLocation = 2
rsLevel1Totals. LockType = 1
rsLevel1Totals. Open (rsLevel1Totals Qry dEntryDate, rsLeve11Totals)

I've put your code in the last line, but I get an error. Can you post me an example of how you would do it?

Thanks,
Marco
"Bob Barrows" <re*******@yaho o.com> schreef in bericht
news:ub******** *****@TK2MSFTNG P11.phx.gbl...
Replace this:
))<#9/1/2003#));
with this:
))<[pDate]));

Create and open a connection object. I'll assume you name it "cn". Then do
this:

dim cn, rs, dEntryDate
dEntryDate=cDat e("9/1/2003")
cn.QryLevel2Cos tTotals dEntryDate, rs

And you're done.

HTH,
Bob Barrows
Marco Alting wrote:
Hi,

I'm still confused about my queries, I want to do something is ASP
that is easily done in Access. I'll post the Access queries below as
a reference. The main idea is that the queries depend on each other
in a hierarchical manner. It all works fine in Access, but in the
last query (Qrylevel3CostT otals) there's a criteria which I would
like to set from an HTML form and thats where I am confused! How do I
make this work in an ASP solution?
QryLevel1CostTo tals:

SELECT QryNodesParents .ParentID, QryNodesParents .ParentLabel,
Sum(QryLevel2Co stTotals.SumOfS umOfBudget) AS SumOfSumOfSumOf Budget,
Sum(QryLevel2Co stTotals.SumOfS umOfVariation) AS
SumOfSumOfSumOf Variation,
Sum(QryLevel2Co stTotals.SumOfL astOfCommitted) AS
SumOfSumOfLastO fCommitted, Sum(QryLevel2Co stTotals.SumOfL astOfActual)
AS SumOfSumOfLastO fActual, Sum(QryLevel2Co stTotals.SumOfL astOfWork)
AS SumOfSumOfLastO fWork, Sum(QryLevel2Co stTotals.SumOfL astOfAccrual)
AS SumOfSumOfLastO fAccrual
FROM QryLevel2CostTo tals INNER JOIN QryNodesParents ON
QryLevel2CostTo tals.TblNodeID = QryNodesParents .TblNodeID
GROUP BY QryNodesParents .ParentID, QryNodesParents .ParentLabel;

QryLevel2CostTo tals:

SELECT TblNode.TblNode ID, TblNode.NodeLab el,
Sum(QryLevel3Co stTotals.SumOfB udget) AS SumOfSumOfBudge t,
Sum(QryLevel3Co stTotals.SumOfV ariation) AS SumOfSumOfVaria tion,
Sum(QryLevel3Co stTotals.LastOf Committed) AS SumOfLastOfComm itted,
Sum(QryLevel3Co stTotals.LastOf Actual) AS SumOfLastOfActu al,
Sum(QryLevel3Co stTotals.LastOf Work) AS SumOfLastOfWork ,
Sum(QryLevel3Co stTotals.LastOf Accrual) AS SumOfLastOfAccr ual,
QryLevel3CostTo tals.LastOfEntr yDate
FROM TblNode INNER JOIN QryLevel3CostTo tals ON TblNode.TblNode ID =
QryLevel3CostTo tals.TblNodeID
GROUP BY TblNode.TblNode ID, TblNode.NodeLab el,
QryLevel3CostTo tals.LastOfEntr yDate;

QryLevel3CostTo tals:

SELECT TblNode.TblNode ID, TblNode.NodeLab el, TblMainEntry.cb sID,
TblCBSandBudget .CBSdescription , Sum(TblCBSandBu dget.Budget) AS
SumOfBudget,

Sum(IIf(IsNull([TblMainEntry].[Variation]),0,[TblMainEntry].[Variation])) AS SumOfVariation,
Last(IIf(IsNull ([TblMainEntry].[Committed]),0,[TblMainEntry].[Committed])) AS LastOfCommitted ,
Last(IIf(IsNull ([TblMainEntry].[Actual]),0,[TblMainEntry].[Actual]))
AS LastOfActual,
Last(IIf(IsNull ([TblMainEntry].[Worked]),0,[TblMainEntry].[Worked]))
AS LastOfWork,
Last(IIf(IsNull ([TblMainEntry].[Accrual]),0,[TblMainEntry].[Accrual]))
AS LastOfAccrual,
Last(IIf(IsNull ([TblMainEntry].[EntryDate]),0,[TblMainEntry].[EntryDate])) AS LastOfEntryDate
FROM (TblMainEntry RIGHT JOIN TblCBSandBudget ON TblMainEntry.cb sID =
TblCBSandBudget .cbsID) INNER JOIN TblNode ON TblCBSandBudget .NodeID =
TblNode.TblNode ID
GROUP BY TblNode.TblNode ID, TblNode.NodeLab el, TblMainEntry.cb sID,
TblCBSandBudget .CBSdescription
HAVING

(((Last(IIf(IsN ull([TblMainEntry].[EntryDate]),0,[TblMainEntry].[EntryDate])
))<#9/1/2003#));



Jul 19 '05 #10

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

Similar topics

6
3428
by: Jegger | last post by:
Hello! We have following situation; network with 100 users, aplication developed in Access, user DB deployed on SQL Server. Is it better to create query inside aplication (with code) and then pass it to SQL Server for execution or is it better to have all these queries saved like stored procedures and then called from aplication?
1
5652
by: John E | last post by:
I have an Access 2000 database in which there are remotely linked SQL tables and a couple of local tables. If I have queries in Access that are designed to pass data between these remote linked and local tables, is it possible to execute these queries externally (i.e. from outwith Access) using, for example, .NET/C#? Or is it possible to run an Access user defined function or macro externally which then in turn deals with the queries? ...
29
3687
by: Mark B | last post by:
We have an Access app (quite big) at www.orbisoft.com/download. We have had requests by potential users to have it converted to an SQL version for them since there corporate policy excludes them from buying mdb backends. Here's the (million dollar?) questions :) How long and how difficult a process would it be? Which SQL platform would we be best to develop it on?
25
4362
by: cory | last post by:
Hi, I have an Access database and am having an ASP.NEt application written for it. It is almost complete. I have a hosting company that I signed up with a month ago but before I did anything I asked them if Access and ASP.NET would work on their servers, they said yes so I bought in. Now they are saying my application wont work on their servers using MSaccess and I can only use SQL or asp 3.0. They are saying Microsoft is trying to...
3
2377
by: pbbriggs | last post by:
I will try to be as descriptive as possible, but this error has me stumped and I am not sure what relevant info to include.... I am running Access XP on a Windows XP machine. I initially began developing an app in Access 2000 but converted it several months ago to XP. So the app is now Access XP format also. My app is crashing on a regular basis, with the totally non-descript Microsoft error (Microsoft Access has encountered a...
11
8095
by: maryjones11289 | last post by:
Hi, I have an app (lost the source code) that performs many different queries in order to achieve the results I'm looking for. Re-developing the app isn't really a big issue...but what would be is trying to figure out how I did the original database queries (SQL Syntax I used) I was wondering if there was a way in Access to log all queries made to a database...or alternatively, was there any app that you guys new of that can monitor...
10
2360
by: Hank | last post by:
We have just recently migrated the data from our Access 2000 backend to Postgres. All forms and reports seem to run correctly but, in many cases, very slowly. We do not want to switch over until we can speed things up. We would like to start implementing Stored Procedures so we can do Server-Side processing. Can anyone recommend a book that would help us learn how to use sprocs or pass-through queries? I apologize if my terminology...
5
7225
by: jonceramic | last post by:
Hi All, I started developing in Access, and people took notice and so we're starting to migrate into our corporate's bigger Oracle system. I'll still be using my developed Access front ends, but will be migrating my back ends to Oracle ODBC. 1. Does anyone have recommendations for books or web resources for general rules/guidelines/help on doing this? I haven't found a good
3
5121
by: Bret Kuhns | last post by:
I recently started a co-op/internship at a company and they are looking to migrate a large legacy supported application from OLEDB to SQL Server. I'm doing prelim work in experimenting with the options available. The application is huge (1+ million lines of C++ code), so it'd be quite a bit of man hours to adapt all the database code for SQL Server. I stumbled upon linked tables in an OLEDB file to an ODBC source (such as SQL Server) and...
0
8233
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8170
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8675
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
8334
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
7158
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6108
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 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 a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4078
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
2604
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1784
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.