May 10, 2022 at 1:20 pm
I am assisting a company in upgrading their server. It is a small business with 9 computers. The mostly have a few shared documents and spreadsheet on the server, and the server hosts and MS SQL database for their accounting software. The accounting software has a maximum of 6 users at a time. The database is 1.5 gb will SQL Epress be enough to run the DB quickly?
May 10, 2022 at 2:10 pm
Maybe. With the information you have shared there is nothing that makes me scream out NO! However, there is very little you have told us, so there may be something in the equation that rules out Express Edition.
[font="Times New Roman"]Erland Sommarskog, SQL Server MVP, www.sommarskog.se[/font]
May 10, 2022 at 5:00 pm
Express has little power and data limits. If they live with those, and perhaps they can, then it will work fine.
May 10, 2022 at 6:53 pm
It's also missing a handful of features like SQL agent, so no scheduling stuff directly in SQL Server and no database mail so no easy reporting and notifications from SQL Server. Hardly game breaking but a little effort to work around.
May 11, 2022 at 4:36 am
It's free. Try it. If it doesn't work out, upgrade to the Standard Edition.
And do heed Steve's warning about not being able to create jobs or schedule them. As he also said, there are work arounds for that so "It Depends".
--Jeff Moden
Change is inevitable... Change for the better is not.
May 11, 2022 at 5:31 pm
It's free. Try it. If it doesn't work out, upgrade to the Standard Edition.
And do heed Steve's warning about not being able to create jobs or schedule them. As he also said, there are work arounds for that so "It Depends".
If you decide to use Express - make sure you build out a process to backup the database and transaction logs at a minimum. These will need to be scripts and scheduled to run (probably in task scheduler unless you have access to some other scheduler). The scripts can be done in powershell, DOS batch scripts, vbscript or even sqlcmd scripts.
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
May 11, 2022 at 6:12 pm
It's unfortunate that so many people believe SQL Express to be an "inferior" product. While it has limitations (Size, CPU, Memory), it is often more than enough for some lightweight/stand-alone applications. Usually, the lack of SQL Server Agent will be a deal breaker for me in some scenarios. It's amazing how much you tend to rely on the service. That being said even some clever use of Windows Scheduler and PowerShell could easily come to the rescue.
Long story short...if Express can meet your needs don't be afraid to use it where you can. You'll save yourself a lot of money in the long run. Trust me, SQL costs can creep up on you if you are not careful. On a side note, keep track of your inventory. Doesn't matter what you use but you'll want it handy when management eventually comes knocking.
May 12, 2022 at 9:24 am
--snip
The database is 1.5 gb will SQL Epress be enough to run the DB quickly?
This is, as I am sure you are aware, also quite heavily dependent on the underlying hardware.
You mention that the company is 'upgrading their server' ... do they have only one server running multiple applications?
The absence of evidence is not evidence of absence.
Martin Rees
You can lead a horse to water, but a pencil must be lead.
Stan Laurel
May 12, 2022 at 9:24 am
--snip
The database is 1.5 gb will SQL Epress be enough to run the DB quickly?
This is, as I am sure you are aware, also quite heavily dependent on the underlying hardware.
You mention that the company is 'upgrading their server' ... do they have only one server running multiple applications?
The absence of evidence is not evidence of absence.
Martin Rees
You can lead a horse to water, but a pencil must be lead.
Stan Laurel
June 4, 2022 at 8:12 am
This was removed by the editor as SPAM
Viewing 10 posts - 1 through 9 (of 9 total)
You must be logged in to reply to this topic. Login to reply