Tagged Questions
The physical-design tag has no wiki summary.
8
votes
10answers
1k 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
...
5
votes
3answers
215 views
How does the `primary key` keyword relate to clustered indexes in SQL Server?
How does the PRIMARY KEY keyword relate to clustered indexes in SQL Server?
(Some people seem to want to answer this question instead of a different question I asked, so I am giving them a better ...
2
votes
3answers
1k 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 ...
1
vote
0answers
130 views
What are good books/reading material for Physical Design [closed]
I did not find a place holder for asking questions related to Digital design - Frontend / Backend(Physical) on stackexchange. So i proposed one there on area51. So for time being asking my question ...
1
vote
1answer
263 views
Refactoring tools for namespaces and physical project structure
When I hack around, some code tend to get much bigger than originally planned. As this happens I usually introduce/collapse/merge namespaces, move files between them, move folders etc etc. Sometimes, ...
0
votes
1answer
203 views
Is there a way of implementing a frictionless pendulum using the Rope resource from AS3 Fisix engine?
I'm developping a gameplay concept using AS3 Fisix engine in which I need for a pendulum to be frictionless. The idea is to define the head and tail positions (using the Fisix's Rope resource) by ...
0
votes
0answers
91 views
Component Costs [closed]
I don't like adding new components (e.g. a C++ or C# DLL) to my overall enterprise application, unless that component truly pays for itself. For example, I won't create a component that contains one ...
0
votes
1answer
406 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 ...
0
votes
3answers
233 views
Should static database data be in its own Filegroup?
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 Geographies.
I'm ...