Dana Robinson

1,337
Reputation
776 views

Registered User

Name Dana Robinson
Member for 1 year
Seen 6 hours ago
Website
Location Champaign, IL
Age 37
I am in charge of BioHDF at the HDF Group in Champaign, IL.
Nov
12
comment How do databases deal with data tables that cannot fit in memory?
I want to assume that we run out of RAM, regardless of whether compression is used or not.
Nov
12
comment How do databases deal with data tables that cannot fit in memory?
No, that's 4 GB of RAM. And we want this to run on higher-end desktops so server/cluster tricks are not an option. And the KIND of index doesn't matter - I want to know how to handle moving data around that can't fit in memory. That's the fundamental problem.
Nov
12
comment How do databases deal with data tables that cannot fit in memory?
Yeah, I get that but certainly there are algorithms for things like this.
Nov
12
comment How do databases deal with data tables that cannot fit in memory?
Like in this link? cs.aau.dk/~simas/aalg04/esort.pdf
Nov
12
comment How do databases deal with data tables that cannot fit in memory?
Really? They just malloc() away? There must be some algorithms that try to handle this problem.
Nov
12
comment How do databases deal with data tables that cannot fit in memory?
And before anyone asks, using a commercial DBMS is not an option.
Nov
12
comment How do databases deal with data tables that cannot fit in memory?
Essentially I am doing just this.
Nov
12
asked How do databases deal with data tables that cannot fit in memory?
Oct
26
comment Can a C++ dll compiled using Visual Studio 2008 be used with Visual Studio 2005?
You should ask this as a separate question. Nobody will see it down here.
Oct
9
comment What is a good way to build a lot of small tools in Visual Studio?
I deal with the Unix->Windows transition all the time and a lot of the software I see is built like this (1 makefile = lib + a bunch of command line and test tools). And yes, I know I can make MSBuild do pretty much anything but it appears to have a steep learning curve and I'd really like to focus on my project, not hacking crazy MSBuild scripts. Why can't MS just let me build a bunch of executables from one project?
Oct
9
comment What is a good way to build a lot of small tools in Visual Studio?
A default Win32 project adds Source, Include and Resource folders which are just noise when your project is one .c file. And yeah, I know you can munge all that stuff as much as you want (directories, etc.) The point is that I'm trying to avoid doing it 20 times.
Oct
9
comment What is a good way to build a lot of small tools in Visual Studio?
I mentioned that I was trying to AVOID this. Clicking through the wizard and deleting the extraneous folders that VS makes is really annoying for 20ish tools.
Oct
9
asked What is a good way to build a lot of small tools in Visual Studio?
Oct
8
accepted VS2008 insists on defaulting to “Itanium” for Active Solution Platform in C++
Oct
2
comment How to end a loop early in C?
It would be better to use break since the intent of the code would be more apparent.
Sep
30
comment What non-programming books should programmers read?
Kurzweil is optimistic to the point of insanity. His predictions are just flat-out silly.
Sep
30
comment What non-programming books should programmers read?
You can save some time and money by reading the Wikipedia page for it.
Sep
28
revised VS2008 insists on defaulting to “Itanium” for Active Solution Platform in C++
deleted 2 characters in body
Sep
25
revised VS2008 insists on defaulting to “Itanium” for Active Solution Platform in C++
added 113 characters in body
Sep
25
answered VS2008 insists on defaulting to “Itanium” for Active Solution Platform in C++
Sep
23
revised How can I learn about proprietary hardware communication?
Made community wiki
Sep
23
answered Can’t find Peopleware anywhere?
Sep
22
comment Is there a list of Visual Studio environment variables?
I found that list myself. It is not what I'm looking for.
Sep
22
asked Is there a list of Visual Studio environment variables?
Sep
19
revised Is there a best practices guide to distributing native C libraries for Windows?
clarification
Sep
19
comment Is there a best practices guide to distributing native C libraries for Windows?
No, my target is developers, not end-users. Windows doesn't typically have the zlib installed so we provide it as a general component for use in our library and other places.
Sep
19
revised Is there a best practices guide to distributing native C libraries for Windows?
typo
Sep
19
asked Is there a best practices guide to distributing native C libraries for Windows?
Sep
14
awarded  Popular Question
Sep
11
awarded  Notable Question
Sep
1
revised Does 64-bit Windows use KERNEL64?
Added useful link
Sep
1
asked Does 64-bit Windows use KERNEL64?
Sep
1
comment The .NET SDK Programs - What does each tool do?
SO is intended for beginners as well as expert programmers. I can think of a lot of programmers who might not know what those tools are for. How about programmers coming from the linux world? Or Python developers who now have to code in C?
Aug
28
awarded  Yearling
Aug
24
revised Problem getting selected text when using a sprited button and selection.createRange() in Internet Explorer.
Changed title to be more descriptive.
Aug
24
awarded  Self-Learner
Aug
22
revised How Prim’s algorithm time complexity is ElogV using Priority Q?
edited tags
Aug
3
comment Where can I get information about the C/C++ linker in Visual Studio?
I don't have a particular problem in mind right now. I just want to have a better understanding of how things work so I can troubleshoot and debug in the future.
Aug
3
asked Where can I get information about the C/C++ linker in Visual Studio?
Aug
2
comment Can a C++ dll compiled using Visual Studio 2008 be used with Visual Studio 2005?
And I just looked at it with dumpbin /imports and the library is dynamically linked to the CRT.
Aug
2
comment Can a C++ dll compiled using Visual Studio 2008 be used with Visual Studio 2005?
Thanks. I found this article which details some of the issues with linking msdn.microsoft.com/en-us/library/…. The library I have is basically a file I/O library so dynamic linking is probably a better idea (depending on how it's used).
Aug
2
asked Can a C++ dll compiled using Visual Studio 2008 be used with Visual Studio 2005?