1

First, please be aware I am definitely a beginner when it comes to server maintenance or network administration. That being said, if I am asking this question in the wrong forum, please feel free to redirect me.

Despite my lack of experience in the IT field (I'm a mechanical engineer), I am still by far the most qualified in our small office to handle issues like this. I was a software consultant for several years out of college, so I can recall enough SQL and C#/C++ to get by if I need to, but want to keep it as technically light as possible.

Right now I'm using Excel to handle all documentation control and product data sheet creation. These are functions probably best suited for a database. I've toyed with OpenOffice Base as a good free alternative, but unless I'm missing something, it seems to come up short on features that a full-fledged SQL Server or PL/SQL database would have.

This should be expected, seeing as it's free, but I hear a lot of talk about mySQL as a good starting place, especially if I intend to start publishing reports or creating forms for data entry.

On all of these issues I'm a bit clueless, but first thing's first: What is the best option to get started with a database product (preferably free) that I can develop into an office-wide server once I know what I'm doing?

5 Answers5

2

If you have Excel, I'm assuming you have Access? I'll likely get downvoted for suggesting it, but it really is a simple way to get started with a database, and yes, there is a migration path to SQL down the road as you grow.

It has a simple to use interface, various wizards for form generation, handling relationships between tables and objects, etc. The problem with Access is that people don't know when to stop using Access and graduate to a two-tiered application with a separate database backend.

gravyface
  • 13,987
1

You can get a good idea of the capabilities of Open Office Base from their Wiki. Open Office Base comes with a built in light-weight (personal) database. You are right in thinking you may want a better database for shared access. mySQL and Postgres are both open source databases with good functionality. Both will run on Windows or Linux. For office use you will want to ensure they are using TCP/IP on the servers address (not localhost or 127.0.0.1. In either case, I would suggest using the JDBC drivers.

BillThor
  • 28,293
  • 3
  • 39
  • 70
1

I'd say mySQL, postgres SQL and Microsoft's SQL Server express are all good places to start. You can download and use them all for free, which actually makes trying them yourself and deciding easy enough - you'll only have to 'pay' the time it takes to trial them.

If you're generally familiar with the Microsoft way of doing things, and your comment about being familiar with c# suggests you might be, then this might tip you towards the Microsoft option.

Rob Moir
  • 32,154
1

It's a small office. That sounds like datasheet import / report generation. I'd say don't bother with concurrency problems, high availability and such, but with how to integrate existent base. I don't think you need all the available SQL power more than you need good integration/migration tools.

My 2 cents is: go and see if the features of OpenBase meet your current requirements. If so, go with it. If you really know you need the SQL power of mysql or postgresql you can start using OpenBase as a frontend with either one as a backend. As far as I can tell, mysql/postgresql aren't exactly seen/used as office solutions so in your case you may not get all the help you need when asking for it on the community forums. I advise against using these directly for implementing office solutions. On the other hand I vouch for OpenBase to be used at least as a frontend, if not together with its "native" sql backend, hsqldb. You will be able to easily integrate current solutions and/or migrate existent data. OpenBaseis a good alternative to microsoft office solutions so I won't bother talking about the latter here.

Giacomo1968
  • 3,553
  • 29
  • 42
user237419
  • 1,653
1

You said openoffice base doesn't have the

...full-fledged SQL Server or PL/SQL database would have.

That's correct. But if you install mysql, as someone else suggested, you can use openoffice as a front-end. Openoffice makes it a lot easier to create the base itself, forms and reports and so on.

And when you have created a form you can send the base file to co-workers and they can connect to the same server.

I don't know Access compares to that solution, but this works very well for me. I also believe Access does not have full-fledged database server.