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

SQL Join between a local table and an external one, using connect string?

Zwoker
66
Hi all,

I am accessing data from an Oracle database via a connect string.

I got into the situation where I wanted to write my SQL select statement to do a join between a local table sitting in my MS Access (2003) database, and an external Oracle table. But I realised I had no idea how to write the SQL. It appears that the whole SQL command gets passed to Oracle, not giving me any visibility to my local tables, is that correct?

I know that if I declare the Oracle tables as external tables in the MS Access environment (rather than use a connect string), I can write VBA code that transparently treats them as local tables for SQL syntax purposes, so I could code SQL that way. But security constraints imposed on me don't allow me to do that - each user of the final MDE would need their own Oracle security logins.

I call my SQL statements using the following style of VBA. If there is another VBA command I should be using, or if there is valid SQL syntax to do what I want, then please let me know.

Expand|Select|Wrap|Line Numbers
  1. Set InitialRst = New ADODB.Recordset
  2. InitialRst.Open SQLstring, connForDB, adOpenStatic, adLockReadOnly
As you would expect the SQLstring contains my SQL command, and the connForDB is the connection object to the Oracle database.

Thanks in advance for any help or suggestions.
Mar 26 '08 #1
15 6623
FishVal
2,653 Expert 2GB
Hi, Zwoker.

..... But I realised I had no idea how to write the SQL. It appears that the whole SQL command gets passed to Oracle, not giving me any visibility to my local tables, is that correct? ...
To the best of my knowledge it = True.

....
I know that if I declare the Oracle tables as external tables in the MS Access environment (rather than use a connect string), I can write VBA code that transparently treats them as local tables for SQL syntax purposes, so I could code SQL that way. But security constraints imposed on me don't allow me to do that - each user of the final MDE would need their own Oracle security logins.
....
You may link external table dynamically via code just after a user has looged into the front-end (I hope you have a copy of front-end for each user session).

Refer to Access help concerning DAO.Database.CreateTableDef method and DAO.TableDefs collection (particularly Append method).
Exploring DAO.TableDef class will give you much useful information too.

Regards,
Fish
Mar 26 '08 #2
Zwoker
66
Refer to Access help concerning DAO.Database.CreateTableDef method and DAO.TableDefs collection (particularly Append method).
Exploring DAO.TableDef class will give you much useful information too.
Hi,

If I understand you (and the quick look I've had at the help for CreateTableDefs), are you saying that I can use that to create a link to the external Oracle table, and then treat the result as a local table?
If so, it sounds like it would be the equivalent of declaring the oracle table in MS Access in the table section, but with me still doing the security login programmatically, rather than having each user log in when they use the MDE - which is a requirement for my solution.

Is that correct? Or have I misunderstood?

One final question - I have been using ADODB in my VBA code. Can I mix and match with DAO? Or is there an ADODB equivalent to the CreateTableDefs?


Thanks for your help.
Mar 26 '08 #3
FishVal
2,653 Expert 2GB
Hi,

If I understand you (and the quick look I've had at the help for CreateTableDefs), are you saying that I can use that to create a link to the external Oracle table, and then treat the result as a local table?
If so, it sounds like it would be the equivalent of declaring the oracle table in MS Access in the table section, but with me still doing the security login programmatically, rather than having each user log in when they use the MDE - which is a requirement for my solution.

Is that correct? Or have I misunderstood?
You are already doing login programmatically opening ADO connection. Is this not the same?
Linking dynamically you may use connection string with password provided by user during login. Did you mean this?
On db close or on open before user logs (or in both cases) you should unlink the table. Sure that means one copy of front-end has not to be opened simultaneously by multiple users.

One final question - I have been using ADODB in my VBA code. Can I mix and match with DAO? Or is there an ADODB equivalent to the CreateTableDefs?
Linking external table via creating TableDef object is exactly the same as linking using wizard. Does it work with the latter?
Mar 26 '08 #4
Zwoker
66
You are already doing login programmatically opening ADO connection. Is this not the same?
Yes, it probably is the same. I build the connection string using a usercode and password stored (encrypted) in a local table, and use that with some some constants and the correct ODBC DSN name for the database I want (there are several options). Just to be sure we are talking about the same thing, this is the code I use:

Expand|Select|Wrap|Line Numbers
  1. connStrForDB = "Provider=MSDASQL.1;Password=" & pPassword & ";Persist Security Info=False;User ID=" & pUsercode & ";Data Source=" & DSNname & ";DBA=R;"
  2. Set connForDB = New ADODB.Connection
  3. connForDB.ConnectionString = connStrForDB
  4. connForDB.CommandTimeout = 0
  5. connForDB.CursorLocation = adUseClient
  6. connForDB.Open
From then on I use the connForDB as a parameter when doing the reads of data from the Oracle tables - as you can see in my first post.

Linking dynamically you may use connection string with password provided by user during login. Did you mean this?
On db close or on open before user logs (or in both cases) you should unlink the table. Sure that means one copy of front-end has not to be opened simultaneously by multiple users.
There is no user log in - That is one of the requirements that stopped me using the reasonably simple external table declarations in MS Access, and switch to a connection string where I can control the login usercode/password. From the users perspective when they run the MDE they just see a form appear, choose whatever criteria they want from the pick-lists, and click the "Go" button. A little while longer (too long at the moment) the report appears in preview mode. If they are happy they click the Print button in Access and exit the MDE.

Linking external table via creating TableDef object is exactly the same as linking using wizard. Does it work with the latter?
Okay, I used to use the wizard linked tables when I thought that all users would have their own Oracle database logins, but no longer. But what you say is good news, as everything was much simpler when using the SQL over the linked tables. I was able to do joins etc... on all my data, treating it all as local tables whether they were or not.

There is an example of the CreateTableDefs in the help that shows an ODBC connected database being accessed. It looks a little confusing, but I'll try copying it and changing the connection string parameters, table names etc... to match mine, and see how it goes. I'm still unsure if I can include the DAO code in with my ADO? Or will I have to convert any of my ADO code to the DAO syntax?

Thanks.
Mar 26 '08 #5
ADezii
8,834 Expert 8TB
Hi, Zwoker.



To the best of my knowledge it = True.



You may link external table dynamically via code just after a user has looged into the front-end (I hope you have a copy of front-end for each user session).

Refer to Access help concerning DAO.Database.CreateTableDef method and DAO.TableDefs collection (particularly Append method).
Exploring DAO.TableDef class will give you much useful information too.

Regards,
Fish
Hello FishVal, I'm not exactly sure if this is what you are referring to, so I'll just drop it in your lap. The code is as simple as you can get for Linking an External Table within Access, just call the Sub-Routine and pass it 2 Arguments. It works fine to Link an Access Table, but to adapt it to an External Oracle Table would need some adjustment on the Connect Property. If this is not what you were referring to, forget I dropped by (LOL).
Expand|Select|Wrap|Line Numbers
  1. Public Sub LinkTable(strTable As String, strSourceDB As String)
  2. 'This Function will DELETE any Table attachments and then Re-Attach them to
  3. 'completely insure the reliability of the attached Tables.
  4.    '  Parameters:
  5.    '    strTable - Name of the Table to be Linked
  6.    '    strSourceDB - Fully qualified Path and Filename of the Source DB
  7.  
  8. On Error Resume Next   'IGNORE ERRORS - necessary!
  9.  
  10. Dim ws As Workspace
  11. Dim db As Database
  12. Dim tdf As TableDef
  13.  
  14. Set ws = DBEngine.Workspaces(0)
  15. Set db = ws.Databases(0)
  16.  
  17. 'DELETE the Link if it already exists
  18.   db.TableDefs.Delete strTable
  19.  
  20. 'CREATE a new Link
  21.   Set tdf = db.CreateTableDef(strTable)
  22.  
  23. 'SET the Properties of the new Link and Append to TableDefs Collection
  24.   tdf.SourceTableName = strTable
  25.   tdf.Connect = ";DATABASE=" & strSourceDB
  26.   db.TableDefs.Append tdf
  27. End Sub
Mar 26 '08 #6
Zwoker
66
Hi ADezii,

Thanks for the code. It was me, not FishVal, that started all this. :)

On the assumption I can get the code to work with my external Oracle tables, does it mean that I could treat the result just as a local table, and use DoCmd.RunSQL to run my SQL code, without worrying about the ultimate source of the data? That would let me do what I wanted, which was have joins between two tables - One a "true" local MS Access table, and the other an external Oracle table.

Thanks.
Mar 27 '08 #7
ADezii
8,834 Expert 8TB
Hi ADezii,

Thanks for the code. It was me, not FishVal, that started all this. :)

On the assumption I can get the code to work with my external Oracle tables, does it mean that I could treat the result just as a local table, and use DoCmd.RunSQL to run my SQL code, without worrying about the ultimate source of the data? That would let me do what I wanted, which was have joins between two tables - One a "true" local MS Access table, and the other an external Oracle table.

Thanks.
To the best of my knowledge, you are correct on your assumption in that once the Oracle Table is successfully Linked, it can be treated as though it was a Local Table with exceptions. A typical exception is that you cannot make Design Changes to the Oracle Table from within Access.

When I directed this to FishVal, I was referring to his Post #2 namely:
Refer to Access help concerning DAO.Database.CreateTableDef method and DAO.TableDefs collection (particularly Append method).
Exploring DAO.TableDef class will give you much useful information too.
Mar 27 '08 #8
Zwoker
66
Hi ADezii,

I spent a few minutes modifying your code to get it to connect to the Oracle database, then ran it to connect to a couple of tables. It appears to work fine. The real test will be using it to do the join that I want between the local and external tables and see if it works.

Thanks for all your (and FishVal's) help in this.

Once I have a confirmed working version I'll post my modified version of your block of code back here so that in the unlikely event that anyone else needs to do this odd combination of data activity, they can have a working example.


Regards,
Zwoker.
Mar 27 '08 #9
ADezii
8,834 Expert 8TB
Hi ADezii,

I spent a few minutes modifying your code to get it to connect to the Oracle database, then ran it to connect to a couple of tables. It appears to work fine. The real test will be using it to do the join that I want between the local and external tables and see if it works.

Thanks for all your (and FishVal's) help in this.

Once I have a confirmed working version I'll post my modified version of your block of code back here so that in the unlikely event that anyone else needs to do this odd combination of data activity, they can have a working example.


Regards,
Zwoker.
Excellant idea Zwoker, kindly post your code for all to see and learn, I'm particularly interested in the String used for the Connect Property.
Mar 27 '08 #10
Zwoker
66
Hi all,

Below is my modified version of ADezii's code. For me it connects to an Oracle database via an ODBC connection.

Expand|Select|Wrap|Line Numbers
  1. Public Sub LinkTable(strTable As String, SchemaName As String, DSNname As String)
  2.  
  3.   ' This function will create a local instance of an external ODBC linked table.
  4.  
  5.   ' It will DELETE any Table attachments and then Re-Attach them to
  6.   ' completely ensure the reliability of the attached Tables.
  7.  
  8.   '  Parameters:
  9.   '    strTable   - Name of the Table to be Linked
  10.   '    SchemaName - Schema (database) name in the Oracle Database.
  11.   '    DSNname    - DSN (ODBC) name to use for connection.
  12.  
  13.   ' It is assumed that pUsercode & pPassword have already been set up elsewhere.
  14.  
  15.   On Error Resume Next   'IGNORE ERRORS - necessary!
  16.  
  17.   Dim ws As Workspace
  18.   Dim db As Database
  19.   Dim tdf As TableDef
  20.  
  21.   Set ws = DBEngine.Workspaces(0)
  22.   Set db = ws.Databases(0)
  23.  
  24.   'DELETE the Link if it already exists
  25.   db.TableDefs.Delete strTable
  26.  
  27.   'CREATE a new Link
  28.   Set tdf = db.CreateTableDef(strTable)
  29.  
  30.   'SET the Properties of the new Link and Append to TableDefs Collection
  31.   tdf.SourceTableName = strTable
  32.   tdf.Connect = "ODBC;DATABASE=" & SchemaName & ";UID=" & pUsercode & ";PWD=" & pPassword & ";DSN=" & DSNname
  33.   db.TableDefs.Append tdf
  34.  
  35. End Sub
If you leave the strings pUsercode and pPassword empty, then it prompts for a usercode/password via a dialog box.

An example of calling the code is:
Expand|Select|Wrap|Line Numbers
  1. LinkTable "CUST", TablePrefix, DSNname
Where the TablePrefix & DSNname strings have already been set up elsewhere - I have several different Oracle databases I need to read data from to do the task, so they are parameterised.

If anyone has any questions, please ask.



<Ramble Mode>
Just to clarify its purpose, 99% of people probably don't need to do this – they can use the little external table wizard to link their Oracle tables in MS Access, and use them in VBA code as if they are tables that are really local to MS Access. This is simple and easy to do. The issue I had with this method is simply one of security. I wasn't going to be allowed to distribute my solution, even as an MDE, if it meant that every user has to have their own usercode and password to log into the Oracle database (and having users have a generic one is a definite no-no). So I needed a way of programmatically logging in. The connection string approach worked fine for that - I included an encrypted usercode and password in a static table in the database, and passed them (decrypted) as part of the connection string parameters. All went well until I had a situation where I had a local table that I needed to do a Join with one of the external Oracle tables. SQL used with the connect string approach just doesn't seem to have the syntax to reference a local table within the SQL code... So here we are with a comprise. I have a local declared table using the above code, but one that uses a programmatic usercode/password to create the linkage, which doesn't prompt the user when it runs. The best of both worlds, I hope.
</Ramble Mode>
Mar 31 '08 #11
ADezii
8,834 Expert 8TB
Hi all,

Below is my modified version of ADezii's code. For me it connects to an Oracle database via an ODBC connection.

Expand|Select|Wrap|Line Numbers
  1. Public Sub LinkTable(strTable As String, SchemaName As String, DSNname As String)
  2.  
  3.   ' This function will create a local instance of an external ODBC linked table.
  4.  
  5.   ' It will DELETE any Table attachments and then Re-Attach them to
  6.   ' completely ensure the reliability of the attached Tables.
  7.  
  8.   '  Parameters:
  9.   '    strTable   - Name of the Table to be Linked
  10.   '    SchemaName - Schema (database) name in the Oracle Database.
  11.   '    DSNname    - DSN (ODBC) name to use for connection.
  12.  
  13.   ' It is assumed that pUsercode & pPassword have already been set up elsewhere.
  14.  
  15.   On Error Resume Next   'IGNORE ERRORS - necessary!
  16.  
  17.   Dim ws As Workspace
  18.   Dim db As Database
  19.   Dim tdf As TableDef
  20.  
  21.   Set ws = DBEngine.Workspaces(0)
  22.   Set db = ws.Databases(0)
  23.  
  24.   'DELETE the Link if it already exists
  25.   db.TableDefs.Delete strTable
  26.  
  27.   'CREATE a new Link
  28.   Set tdf = db.CreateTableDef(strTable)
  29.  
  30.   'SET the Properties of the new Link and Append to TableDefs Collection
  31.   tdf.SourceTableName = strTable
  32.   tdf.Connect = "ODBC;DATABASE=" & SchemaName & ";UID=" & pUsercode & ";PWD=" & pPassword & ";DSN=" & DSNname
  33.   db.TableDefs.Append tdf
  34.  
  35. End Sub
If you leave the strings pUsercode and pPassword empty, then it prompts for a usercode/password via a dialog box.

An example of calling the code is:
Expand|Select|Wrap|Line Numbers
  1. LinkTable "CUST", TablePrefix, DSNname
Where the TablePrefix & DSNname strings have already been set up elsewhere - I have several different Oracle databases I need to read data from to do the task, so they are parameterised.

If anyone has any questions, please ask.



<Ramble Mode>
Just to clarify its purpose, 99% of people probably don't need to do this – they can use the little external table wizard to link their Oracle tables in MS Access, and use them in VBA code as if they are tables that are really local to MS Access. This is simple and easy to do. The issue I had with this method is simply one of security. I wasn't going to be allowed to distribute my solution, even as an MDE, if it meant that every user has to have their own usercode and password to log into the Oracle database (and having users have a generic one is a definite no-no). So I needed a way of programmatically logging in. The connection string approach worked fine for that - I included an encrypted usercode and password in a static table in the database, and passed them (decrypted) as part of the connection string parameters. All went well until I had a situation where I had a local table that I needed to do a Join with one of the external Oracle tables. SQL used with the connect string approach just doesn't seem to have the syntax to reference a local table within the SQL code... So here we are with a comprise. I have a local declared table using the above code, but one that uses a programmatic usercode/password to create the linkage, which doesn't prompt the user when it runs. The best of both worlds, I hope.
</Ramble Mode>
Congratulations, and thanks for sharing your success with us.
Mar 31 '08 #12
Zwoker
66
Congratulations, and thanks for sharing your success with us.
Thanks.

For those very few reading all this that have some interest in the topic, another ramble starts below... *grin*

I have found that the Joins between the "true" local table and the locally declared, but really external, table doesn't work too badly. I had expected the times to be poor, as the local table is here on my PC and the external table is in an Oracle database on the other side of the world.
But it turned out to not be as bad as I thought - my test local table has around 550 records, and the resultset produced from running the SQL join returned around 3,300 records, and it did it in around 13 seconds.

But, when I added a subquery to get only the latest record from the external table (the external is a date-based transaction table, the local a master table) the response time slowed down massively - It took around 10 minutes to come back. I checked the subquery using an alternative master table in the Oracle database, that happens to have the same keys for the Join, and it only took around 10 seconds. This would tend to indicate that the ODBC translation mechanism for the local style SQL syntax is not very efficient, in MS Access 2003.

So I'll keep the basic mechanism, but do away with subqueries. I'll just process the data in VBA to keep the records I want.

And unless someone has any questions on this somewhat specific and odd topic, I'll leave it at that. :)
Apr 1 '08 #13
ADezii
8,834 Expert 8TB
Thanks.

For those very few reading all this that have some interest in the topic, another ramble starts below... *grin*

I have found that the Joins between the "true" local table and the locally declared, but really external, table doesn't work too badly. I had expected the times to be poor, as the local table is here on my PC and the external table is in an Oracle database on the other side of the world.
But it turned out to not be as bad as I thought - my test local table has around 550 records, and the resultset produced from running the SQL join returned around 3,300 records, and it did it in around 13 seconds.

But, when I added a subquery to get only the latest record from the external table (the external is a date-based transaction table, the local a master table) the response time slowed down massively - It took around 10 minutes to come back. I checked the subquery using an alternative master table in the Oracle database, that happens to have the same keys for the Join, and it only took around 10 seconds. This would tend to indicate that the ODBC translation mechanism for the local style SQL syntax is not very efficient, in MS Access 2003.

So I'll keep the basic mechanism, but do away with subqueries. I'll just process the data in VBA to keep the records I want.
And unless someone has any questions on this somewhat specific and odd topic, I'll leave it at that. :)
It took around 10 minutes to come back. I checked the subquery using an alternative master table in the Oracle database, that happens to have the same keys for the Join, and it only took around 10 seconds.
  1. How did the use of the Alternative Master Table differ from the Primary Master? I'm not exactly sure what you mean
  2. Was the Alternative Table dynamically linked also? I'm assuming it was not.
  3. If it has the rquivalent Join Keys, why the 60X degradation in processing time?
  4. Thanks for the consideration.
Apr 1 '08 #14
Zwoker
66
How did the use of the Alternative Master Table differ from the Primary Master? I'm not exactly sure what you mean
The two master tables are different sets of data, that happen to have the same main keys in common. Joining the alternative table to the transaction table was a non-meaningful thing to do in a business sense, but since the actual data in the keys was similar, it was a meaningful test for timings and record counts etc... The number of records found using the Join, with the alternative master, was similar.

Was the Alternative Table dynamically linked also? I'm assuming it was not.
You are correct, the alternative master is an Oracle table, rather than the local table that I was working with. So I was joining and subquerying on two external tables.

If it has the equivalent Join Keys, why the 60X degradation in processing time?
That's the question. I can only assume its a combination of having MS Access do whatever parsing it does on the SQL (the syntax for a DoCmd.RunSQL is different from the SQL I pass to the Oracle database when using the connect string method), and on the nature of each local table record having to be sent to the Oracle database to evaluate the Oracle transaction table Join - but this wasn't an issue until I added the subquery. The Subquery, which runs fine between the two external tables, is the heart of the issue when using the local table as the left side of the Join, whatever the cause really is.

Thanks for the consideration.
You're welcome.

I have found most of what I have had to do to be far more complicated and confusing than I expected it to be. I keep having the expectation that what I want to do must be commonly done, and therefore should be easy to find good examples online. I keep getting disappointed. The one good thing that has come out of this is I now know a great deal more about VBA, connection strings, SQL and various related items. My only ongoing fear is that since I'm largely self-taught, that there could really be simple ways of doing things that I have found complicated solutions for...
Apr 3 '08 #15
ADezii
8,834 Expert 8TB
The two master tables are different sets of data, that happen to have the same main keys in common. Joining the alternative table to the transaction table was a non-meaningful thing to do in a business sense, but since the actual data in the keys was similar, it was a meaningful test for timings and record counts etc... The number of records found using the Join, with the alternative master, was similar.

You are correct, the alternative master is an Oracle table, rather than the local table that I was working with. So I was joining and subquerying on two external tables.

That's the question. I can only assume its a combination of having MS Access do whatever parsing it does on the SQL (the syntax for a DoCmd.RunSQL is different from the SQL I pass to the Oracle database when using the connect string method), and on the nature of each local table record having to be sent to the Oracle database to evaluate the Oracle transaction table Join - but this wasn't an issue until I added the subquery. The Subquery, which runs fine between the two external tables, is the heart of the issue when using the local table as the left side of the Join, whatever the cause really is.


You're welcome.

I have found most of what I have had to do to be far more complicated and confusing than I expected it to be. I keep having the expectation that what I want to do must be commonly done, and therefore should be easy to find good examples online. I keep getting disappointed. The one good thing that has come out of this is I now know a great deal more about VBA, connection strings, SQL and various related items. My only ongoing fear is that since I'm largely self-taught, that there could really be simple ways of doing things that I have found complicated solutions for...
My only ongoing fear is that since I'm largely self-taught, that there could really be simple ways of doing things that I have found complicated solutions for...
That's why we're all here...
Apr 3 '08 #16

Sign in to post your reply or Sign up for a free account.

Similar topics

6
by: Access Newbie | last post by:
I'm using Access 2000 and I'm trying to create a pass-through query to append all the data from a local table to a remote table. I'm using the SQL query editor in MS Access to create the query (I...
4
by: Peter Ammon | last post by:
I would like to share a variable between two functions defined in two separate source files; no other functions will need the global variable so I'd prefer to not give it file scope. Thus, I want...
5
by: Steven C | last post by:
Hello! I am trying to connect to a SQL Server (MSDE) database in mixed mode authentication, via C#, but when I use the MSDE instance name, I keep getting an "Unrecognized Escape Sequence"...
7
by: Li Pang | last post by:
Hi, I'd like to know how to call a sub/function bu using a string containing its name, as an example as follow: Sub Main() Dim name As String = "TestMe()" ' need help here End Sub
2
by: | last post by:
Greets, How does one connect to a local excel file using data wizard is it possible? I'm trying to connect to an excel file and populate a dataset and combo box with the data from excel TIA
12
by: jimfortune | last post by:
I have a question based somewhat on: http://groups.google.com/group/comp.databases.ms-access/browse_frm/thread/ddde992b84f762bd/152bbc027bf00720?hl=en#152bbc027bf00720 A local table works well...
3
by: asemeiks | last post by:
I'm using Access 97, Jet 4.0. the data resides on a Win 2000 domain server. Using .Net 1.1 and IIS 5.0 on a local XPPro computer I am trying connect to a Jet database on the server. If the data...
2
by: mvl_groups_user | last post by:
I am trying to look up data on about 1000 records from a 6 million record view on a DB2 database using msaccess. The 6 million record DB2 view is connected through a linked ODBC table (table A),...
1
by: ragtopcaddy via AccessMonster.com | last post by:
I have a fairly static odbc connect string that should be visible in a text box on a form for reference purposes. It seems excessive to me to keep a table with 1 field and 1 record to record this...
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: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
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: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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...
0
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,...

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.