2011-06-26 update:
I am not sure if there are any changes in the latest make and gcc packages. Anyway, I noticed when run make, I encountered the message below:
make: g: Command not found
make: [qgen] Error 127 (ignored)
To fix this, find where gcc is at, then created a symbolic link g
that points to gcc. All is well afterwards:
[root@ip-10-245-209-196 dbgen]# which gcc
/usr/bin/gcc
[root@ip-10-245-209-196 dbgen]# cd /usr/bin/
[root@ip-10-245-209-196 bin]# ln -s gcc g
End update
Recently I found myself doing some data loading benchmark testing
with table partition. Data loading and storing for BI/DW/DSS
stuff almost always involves data partitioning. SQL Server
partition has a nice feature called partition switch, where you
can swap data in and out of a partitioned table. …