Tagged Questions
The size-estimation tag has no wiki summary.
7
votes
1answer
485 views
Is there any standard tool to estimate disk space requirement for SQL Server?
Is there a tool/application to calculate space requirement for a database in SQL Server? I know sp_spaceused can be used, but it calculates the actual space being taken up at that moment. What I was ...
6
votes
4answers
647 views
Estimating zip size/creation time
I need to create ZIP archives on demand, using either Python zipfile module or unix command line utilities.
Resources to be zipped are often > 1GB and not necessarily compression-friendly.
How do I ...
1
vote
6answers
2k views
Scrum and Story Points - why ideal man-days not ideal man-hours?
I am used to thinking about time estimates in the way suggested by Joel Spolsky - that if a scheduled item takes more than 16 hours, it should be divided into smaller tasks. Now, I am implementing ...
1
vote
5answers
791 views
Unit for estimating hours in Scrum tool
I've been learning Scrum and trying a tool called Acunote for use with it. My question is about two fields I have there, for each task. They're "estimate" and "remaining". What unit should I use for ...
1
vote
5answers
273 views
Guesstimating database size
I'm trying to foresee how big my database will be. Let's say I have only one table:
CREATE TABLE user (
id INT UNSIGNED NOT NULL AUTO_INCREMENT,
email VARCHAR(50),
pass CHAR(40),
url ...
0
votes
1answer
130 views
LOC estimate information
my manager asked to LOC estimate for the new project. I am new to LOC estimate.
where could I get information on this?
0
votes
1answer
114 views
How do I estimate task size for an open source project?
The scale of an open source project is completely different from the projects I do at the office. Work is done in spare time, volunteer work that may not materialize, personal development resources, ...
0
votes
2answers
939 views
Database size estimation tool
Is there a tool for estimating the size of a database?
I am looking for such a tool, which I can input the estimated tables, row size, data types, indexes and other variables to give me a clue about ...