Viewing 15 posts - 2,146 through 2,160 (of 3,061 total)
Pranav Shah-410191 (4/2/2010)
I am still wondering as to exactly what are the advantages of choosing Databases over Schemas.
Backup/recovery strategy would be much easier and reliable with one databse per store.
April 2, 2010 at 7:33 pm
Doctork11 (4/2/2010)
SELECT * INTO BK_TABLE_B FROM TABLE_A
really?
April 2, 2010 at 2:07 pm
sumit.joshij (4/2/2010)
April 2, 2010 at 2:01 pm
in short, hire a senior DBA with proven experience in data modeling and physical implementation 🙂
April 2, 2010 at 6:26 am
Here are my two cents.
Reading your post I come to the conclusion you have designed a star-schema data warehouse following the dimensional model path. I also assume that having nine...
April 1, 2010 at 2:24 pm
This is more likely application side.
Check the value of SqlCommand.CommandTimeout property - I think default value is about 30 secs.
A value of zero means unlimited.
You can alter SqlCommand.CommandTimeout value, test...
April 1, 2010 at 2:10 pm
I have seen people following that path when building a test environment where they are certain about the quality of the data.
Rationale behind is that building PKs/FKs afterwards - with...
April 1, 2010 at 1:59 pm
The general guidance on partitioning is that you partition a table either to help during quering or to help during archiving/purging... or both.
In general a date column is a good...
April 1, 2010 at 1:27 pm
I would start by checking requirements with business.
If business is Okay with getting reports on "yesterday's" data depending on database size you can just restore a full backup on "reporting...
April 1, 2010 at 1:06 pm
Exactly - the combination of the three flags a.k.a. attributes, defines the status of the FK.
The standard setup for FKs between FACTtual and DIMensional tables in data warehouse environments is...
April 1, 2010 at 11:32 am
Paul White NZ (4/1/2010)
PaulB-TheOneAndOnly (4/1/2010)
Paul White NZ (3/30/2010)
It surprises me that Oracle behaves differently, but there you go.
Actually - in the Oracle world, you have to define such particular FK...
April 1, 2010 at 10:42 am
Andrew-443839 (3/31/2010)
...then later, if I need to rename REALDATABASE
Just out of curiosity... any particular reason you foresee the need of renaming REALDATABASE in the future?
April 1, 2010 at 10:37 am
dhaval_dsa (4/1/2010)
what is the review for oracle 11i in today's market
easy money... nobody uses 11i 'cause it doesn't exist 😀
April 1, 2010 at 10:31 am
Paul White NZ (3/30/2010)
It surprises me that Oracle behaves differently, but there you go.
Actually - in the Oracle world, you have to define such particular FK as "rely" for this...
April 1, 2010 at 10:27 am
Viewing 15 posts - 2,146 through 2,160 (of 3,061 total)