Viewing 15 posts - 1,156 through 1,170 (of 3,061 total)
Steve.hitch (2/25/2011)
February 25, 2011 at 1:28 pm
Steve.hitch (2/25/2011)
February 25, 2011 at 11:21 am
abotha-1117340 (2/25/2011)
February 25, 2011 at 11:14 am
Rookie R (2/14/2011)
February 23, 2011 at 12:34 pm
FACT tables should store data at granular level, aggregations can be done either on-the-fly or in cubes for recurrent ones.
February 22, 2011 at 12:31 pm
Stamey (2/21/2011)
Relational Model.
Interesting choice for a new Data Warehouse - nothing wrong about it, just interesting.
In this particular case basic indexing should include...
1- Unique indexes on all PK constraints on...
February 21, 2011 at 5:52 pm
MonsterRocks (2/21/2011)
user_id int autoincrement primary key
user_name varchar(30) unique key
password varchar(30)
:
while login i checks
select * from ...
February 21, 2011 at 2:35 pm
John.Liu (2/21/2011)
PaulB-TheOneAndOnly (2/20/2011)
I usually use syntax below...
if exists (select * from sys.tables where name like '#mytemptable%')
temp table is created in TEMPDB, unless you already in the TEMPDB, you have to...
February 21, 2011 at 1:05 pm
May I ask how big is the database?
Also, may we know how much t-log gets generated per minute/hour/day?
February 21, 2011 at 12:54 pm
sqlgreg (2/21/2011)
February 21, 2011 at 12:50 pm
diamondgm (2/20/2011)
February 20, 2011 at 5:34 pm
I usually use syntax below...
if exists (select * from sys.tables where name like '#mytemptable%')
drop table #mytemptable
create table #mytemptable(table definition as needed)
Please replace "mytemptable" with the appropriate name.
February 20, 2011 at 5:10 pm
Just to rule out most likely suspects please check...
1- Query is written using four-parts-names.
2- There is an unique index on target table.
3- DTC is setup and running.
February 20, 2011 at 4:56 pm
Please allow me to start one step before the indexing strategy.
What DWH model are you following? is it a Star schema or is it a Relational model?
For basic indexing,...
February 18, 2011 at 4:23 pm
sqlgreg (2/17/2011)
I'm going to eat them. I find text files to be really delicious, with a bit of hot sauce.. 😛
Oh yes... I know what you mean, they are delicious...
February 18, 2011 at 4:10 pm
Viewing 15 posts - 1,156 through 1,170 (of 3,061 total)