all groups > sql server misc > october 2007 >
You're in the

sql server misc

group:

Large Addition to Database


Re: Large Addition to Database Greg D. Moore (Strider)
10/21/2007 11:30:06 PM
sql server misc:
[quoted text, click to view]

That's still very small as far as SQL databases go.

Not sure how access documents, but a decent index on that (some sort of ID,
unique name or something) will make things work well most likely.

(BTW, you may want to look into upgrading the DB to use something like SQL
Express edition. More modern, better supported and may be a bit faster,
especially on a Windows 2003 box.)

[quoted text, click to view]



--
Greg Moore
SQL Server DBA Consulting Remote and Onsite available!
Email: sql (at) greenms.com http://www.greenms.com/sqlserver.html

Large Addition to Database Neil
10/22/2007 1:25:51 AM
I just made a major addition to the data in our database (SQL 7 with an
Access 2000 front end). The users had been working with a set of 66,000 Word
documents, having to open each to view when needed. I converted these docs
to RTF format, and brought the RTF codes into the database itself. Each
former Word doc is now stored in a single Text field in the record; and
there is an additional Text field which is the text of the document in plain
text format. (The average document is about 1,000 characters, and the
average document with RTF codes is about 1,000-1,500 characters.)

As a result, my database went from being about 600 MB in size to a little
over a gig. Still not huge; but significant increase from it's original
size.

Since there's a big jump in the size, I was wondering if there's anything I
need to do maintenance-wise to help the database use the new data.

Thanks,

Neil

Re: Large Addition to Database Neil
10/22/2007 1:58:08 AM

[quoted text, click to view]

Right. I just meant that it was almost double the original size. Wasn't sure
if there was any kind of maintenance that should be done.

[quoted text, click to view]

Yes, each record has a unique ID for the record. These two fields are just
two of many fields in the record.

[quoted text, click to view]

SQL Express? I thought SQL Express was the new version of SQL Desktop/MSDE.
Maybe I'm wrong.

We're using the full version of SQL 7, and are upgrading to SQL 2005.

Thanks,

Neil



[quoted text, click to view]

Re: Large Addition to Database Greg D. Moore (Strider)
10/22/2007 7:16:41 AM
[quoted text, click to view]

Nothing more than the usual. Backups, do a DBCC CheckDB on a regular basis.
Perhaps update stats from time to time, monitor your indices.

[quoted text, click to view]

It is. For many smaller applications, it's a great choice. For a 1 gig
database, I'd certainly consider it.

[quoted text, click to view]

Didn't want to suggest that if it wasn't in the budget.

[quoted text, click to view]

--
Greg Moore
SQL Server DBA Consulting Remote and Onsite available!
Email: sql (at) greenms.com http://www.greenms.com/sqlserver.html

Re: Large Addition to Database Greg D. Moore (Strider)
10/23/2007 12:00:00 AM
[quoted text, click to view]

No, and there never has been. That's a misunderstanding of the old query
governer built into MSDE (whcih permitted only 5 or 6 (I've seen both
numbers)) of queries to run at the same time before things were slowed down
on purpose).

SQL Server Express 2005 does not have that limit. Rather it is limited in
DB size (2GB), CPU (1) and memory (I believe 1GB). But within those
parameters it operates at full-speed and works very well.


[quoted text, click to view]



--
Greg Moore
SQL Server DBA Consulting Remote and Onsite available!
Email: sql (at) greenms.com http://www.greenms.com/sqlserver.html

Re: Large Addition to Database Neil
10/23/2007 12:57:43 AM
[quoted text, click to view]

Isn't there a limitation on the number of users that can access the
database? I thought that it was something like 10 users or something.

Re: Large Addition to Database Erland Sommarskog
10/23/2007 9:41:24 PM
Greg D. Moore (Strider) (mooregr_deleteth1s@greenms.com) writes:
[quoted text, click to view]

But keep in mind that SQL Express does not come with SQL Agent, which can
be a killer for Neil if he wants to schedule backsup and that.


--
Erland Sommarskog, SQL Server MVP, esquel@sommarskog.se

Books Online for SQL Server 2005 at
http://www.microsoft.com/technet/prodtechnol/sql/2005/downloads/books.mspx
Books Online for SQL Server 2000 at
Re: Large Addition to Database Greg D. Moore (Strider)
10/24/2007 12:00:00 AM


[quoted text, click to view]


Good point.



[quoted text, click to view]

--
Greg Moore
SQL Server DBA Consulting Remote and Onsite available!
Email: sql (at) greenms.com http://www.greenms.com/sqlserver.html

Re: Large Addition to Database Neil
10/24/2007 11:45:45 PM
Thanks for the info. That's good to know.

[quoted text, click to view]

Re: Large Addition to Database Neil
10/24/2007 11:49:39 PM
Thanks for adding that info.


[quoted text, click to view]

AddThis Social Bookmark Button