Tagged Questions

0
votes
0answers
16 views

How can I create a model in Powerdesigner which can generate create script for different database?

I just want to create the model once, and then use it in any kind of database, without the need to modify the model. What I should do with the data type ? I found there is numeric and other kind of …
0
votes
1answer
12 views

Oracle’s Bitmap Index in SQL Server

I've been successfully using bitmap indexes for years in Oracle environment. Now I'm working on a data warehouse project which will be hosted on SQL Server 2005. So far, I was unable to find an answer …
7
votes
10answers
583 views

Alternative to forward declarations when you don’t want to #include

I usually, almost without thinking anymore, use forward declarations so that I won't have to include headers. Something along this example: //----------------------- // foo.h …
0
votes
3answers
110 views

Should static database data be in its own Filegroup?

Hi folks, I'm creating a new DB and have a bunch of static data that won't change. If it does, it will be a manual process AND it will happen very rarely. This data is a mix of varchars and …