Viewing 15 posts - 11,656 through 11,670 (of 11,676 total)
Try adding another backslash to your file folders. Example:
d:\samples\
February 23, 2010 at 11:28 am
I think the problem lies in the fact that when the cube is processing your fact table, he will link the surrogate keys (or attribute key, whatever you use) to...
February 23, 2010 at 4:19 am
Is your dimension usage set-up correctly? (one of the tabs in the cube)
I usually forget this when I create new measure groups and dimensions and it can really mess things...
February 21, 2010 at 12:33 pm
Regarding the set-up of hierarchies and attribute relationships for your time dimension, make sure you use the concatenation of year and month as primary key for month. For example: 200911...
February 19, 2010 at 6:27 am
Can you try the following query:
SELECT tt1.ID, tt1.ID_Count, tt1.Amount, tt2.ID_Count, tt2.Amount, tt3.ID_Count, tt3.Amount -- and so on...
FROM
(SELECT ID, COUNT(ID) AS ID_Count, SUM(Amount) AS Amount
FROM t1
GROUP BY ID) tt1
INNER JOIN
(SELECT t1ID,...
February 19, 2010 at 12:48 am
clucasi (2/18/2010)
Does anybody have an idea if you can use raw files to update records in a table using SQL server 2005
I have trawled the internet but with...
February 19, 2010 at 12:36 am
Or you can use the following SQL code in your OLE DB Source:
SELECT
t0.[ID] AS [ID]
, [Name]
, (isnull(TOTALCOD1,0) + isnull(TOTALCOD2,0) + isnull(TOTALCOD3,0)) AS TOTALSUM
, TOTALCOD1
, TOTALCOD2
, TOTALCOD3
FROM
(SELECT [ID]
,[Name]
FROM...
February 18, 2010 at 2:16 am
Aaron Cabrele (2/17/2010)
I have the exact same problem, however my source file has 1200 columns which is being split into 2 tables so it is not feasable to go through...
February 18, 2010 at 12:55 am
Griffster (2/17/2010)
An example is that it sees the time in Sybase (Sybase 11) table as 12:52:39.000, but SSIS sees the value as a DT_I8 with a value of 463590000000.
Such a...
February 17, 2010 at 2:48 am
Griffster (2/11/2010)
Conversion from "DT_I8" to "DT_DBTIME" is not supported
Can you give an example of how SSIS sees the input data?
My first guess is to convert it with a Data Conversion...
February 17, 2010 at 12:37 am
vithasun (2/15/2010)
I tried with this command in the command prompt.
D:\migrationproject\ErrorOutputDescription_2008_V2.0.0\ErrorOutputDescription.dll gacutil/i "C:\windows\Microsoft.NET\Framework\v1.1.4322"
but the error it is throwing is gacutil is not a recognized command.
Maybe you could try the following...
February 16, 2010 at 1:56 pm
Steve Jones - Editor (2/16/2010)
February 16, 2010 at 12:50 pm
Glad that you resolved the issue.
darshan-987176 (2/16/2010)
February 16, 2010 at 7:21 am
If you run the following query at the msdb database (one of the system databases) at your SQL Server, do you get any results?
SQL Server 2005:
SELECT [folderid]
...
February 16, 2010 at 7:07 am
Ragie,
I've had a similar issue not so long ago.
I was also looking for a clean way to 'exit the loop' if an error was found (similar to the continue statement...
February 16, 2010 at 5:36 am
Viewing 15 posts - 11,656 through 11,670 (of 11,676 total)