I have a database table in SQL Server 2005 Express that takes in 2367 new rows each day, there is only 3 columns for each row. So in a year this will give around 800k of rows and in 10 years 8 million rows. Since I know that the company where I'm making this installation will not handle any database management/cleanup my question is will a SQL Server 2005 Express be able to handle this many rows in a single table? Are there any limits? I do know that there is something like 4gig of file size limit. Thanks for any advice or inside information about this.
EDIT: Table setup
[RefId] [bigint] NOT NULL,
[PointDate] [datetime] NOT NULL,
[PointValue] [decimal](10, 2) NOT NULL
note: SQL Server 2005 Express doesn't allow you to set up jobs.