Viewing 15 posts - 301 through 315 (of 357 total)
Not really sure what you are trying to do.
If Products 1,2,3,4 are cheeses and Products 11,12,13 are butters then you could add a column to the relational data base...
July 22, 2009 at 5:17 am
If the user is doing this as a one off then it can be done (although there may be a lot of scrating of head).
If there is some sort...
July 22, 2009 at 4:48 am
Have a look at dense_rank. I think that is what you are looking for.
Gives you a way of assigning a value of importance to data. Have used it beofre...
July 21, 2009 at 9:38 am
Create a package. Create a connection to the Excel file. Create an OLE DB connection for where the data is going to go. The Excel connection will contain the directory...
July 21, 2009 at 9:31 am
Obviously if you are having network issues this will affect the performance. Sometimes the first person to run a query against a cube will be caching the query for the...
July 8, 2009 at 10:41 am
to extract this to a 'Noddy' style answer.
Data Mart is a database
Cube is a method of storing OLAP data. You could call it a OLAP table.
OLAP means anlytical rather...
July 8, 2009 at 10:29 am
Find a web site with examples . Google SSIS Junkie and check out Jamie Thomsons blog site. There is intelliesens in the editor and it does not take long to...
July 8, 2009 at 9:54 am
Metadata being out of date
I believe this happens your package looks at a table and retrieves a column that is a varchar(2), then close the package change the table definition...
July 8, 2009 at 9:51 am
Couple of thoughts. I am assuming that SQL server and SSAS are on the same remote server. If you can get onto the server then open SSMS on the...
July 8, 2009 at 9:19 am
I agree with Dave J. He has the right approcah. The transformation task are not required. Step back from SSIS and think of what you want to do in sql.The...
June 15, 2009 at 4:19 am
I have considered such a problem. I have thought of using sql command from variable for the data source and open rowset from variable for the destination.
If I was...
June 15, 2009 at 3:57 am
Couple of options. Why not use System variable PackageName. I use a package level variable LogFolder that contains a string value such as "c:\logging\". Then the connection can be set...
June 9, 2009 at 4:58 am
Many thanks for that I will certainly look into it. My frustration was that we were only shifting 3.3 million rows and it just ground to a halt.
I believe that...
May 7, 2009 at 2:32 pm
Thanks,
but got multiple rows for tables so changed it slightly:
SELECT table_name,table_rows FROM (
select so.name as table_name, si.rowcnt as table_rows,ROW_NUMBER() OVER (PARTITION BY SO.NAME ORDER BY si.rowcnt DESC) AS RC
from sysobjects...
April 9, 2009 at 1:33 am
Jerry I think I need a clearer explanation of what you are doing
I am guessing you are taking in three data feeds that want to end up as three...
April 9, 2009 at 12:53 am
Viewing 15 posts - 301 through 315 (of 357 total)