all groups > sql server data warehouse > july 2003 > threads for july 22 - 28, 2003
Filter by week: 1 2 3 4 5
Fact Table load - drop pk ?
Posted by Phil at 7/28/2003 2:28:48 PM
I want to increase performance on a fact table load.
The table has only a pk defined on an identity column.
Since it would help performance to drop all indexes
and then load a fact table. Is there anyway I can drop
the clustered index that is automatically created
on the identity column and ... more >>
Link table in SQL server ??
Posted by ginola NO[at]SPAM mailcity.om at 7/28/2003 3:54:14 AM
Hi, I am moving the access to SQL server 2000.
I just wonder if it has the function like Link table to link up other
instance??
thanks
----------------------------
Ginola... more >>
Complex Query - cont
Posted by Peter Newman at 7/27/2003 7:29:40 AM
I have been trying to get a results from a third Party
accounts system. From all the help given i the past i
have managed to get this far.
if exists (select * from dbo.sysobjects where id =
object_id(N'[dbo].[Tmpnomdat]') and OBJECTPROPERTY(id,
N'IsUserTable') = 1)
drop table [dbo].[Tmp... more >>
What the best way to start in datawarehouse?
Posted by Denis at 7/24/2003 9:10:17 PM
Hi,
What the best way to start in datawarehouse?
Which books should I read?
Web Sites?
Etc.
Thanks a lot.
Denis
... more >>
Temp Tables or Cube ?
Posted by Chris Hoare at 7/23/2003 3:41:49 AM
Hello,
This is an opinion question i guess : i am about to write
a multitable lookup that looks at 7 differant tables
basically to think about writing a timetable lookup. There
are 2 tables of 1 to 1 and 5 of 1 to many.
The results will be called via asp.net web site; and the
number of... more >>
Date conversion Problem
Posted by James Xiang at 7/22/2003 12:14:20 PM
Hi,
I tried to run a view
SELECT TOP 100 PERCENT *
FROM dbo.[LIMITS]
WHERE (DATEDIFF(D, [NEW BUSINESS DATE], '31/07/2003') > 0)
which returned an error said "The conversion of a char
data type to a datetime data type resulted in an out-of-
range datetime value."
It seems SQL serv... more >>
|