Viewing 15 posts - 1,021 through 1,035 (of 1,231 total)
You don't need a script task to export a table in SSIS , chose a dataflow task within SSIS. Make ole db the source and make a flat file...
May 9, 2014 at 5:46 pm
Do you have anything configured under report properties for available values and default values that might cause this behavior?
May 7, 2014 at 3:26 pm
LutzM (5/3/2014)
...which is refrenced across 63 columns in 40 + tables...
Just wondering: Why is a PK column refernced by more than one column of another table?
There are cases when it...
May 4, 2014 at 1:07 am
UserDatasourceFact
UserID | SourceID
1 | A
2 | A
I have Project Dimension Table:
Project ID | Source
P1 | A
P2 | A
P3 | B
I am wondering if the projects table can serve as a...
May 2, 2014 at 2:04 pm
Don't know that you install one, they are created within SQL Server. Start with planning what you expect the size to grow to in the future. For each potential table...
May 2, 2014 at 11:59 am
I've never tried a database diagram but it might be useful in this case to visualize the entity relationships.
May 2, 2014 at 11:54 am
There may also be triggers in place doing writes somewhere.
May 2, 2014 at 11:45 am
You can have two jobs running simultaneously and importing to the different tables. If the data resides on different machines you would need to connect via linked server objects. So...
April 22, 2014 at 2:11 pm
You can go with the one data warehouse approach. I would employ the use of schemas to denote where the information comes from. Example, china.orders will be the same as...
April 22, 2014 at 10:04 am
Do you need to get the week start and end dates, or the week number in the year? Have you considered the use of a calendar table? Keep in mind...
April 22, 2014 at 9:58 am
Not sure. I think count returns an integer and the largest number that can return is 2,147,483,647. Do you have some more information on your query that can help?
April 22, 2014 at 9:54 am
Extra comma's where? Do you mean there were extra fields in the text file that had empty string values? Else the purpose of the double quotes is to denote any...
April 22, 2014 at 9:39 am
Something interesting would be the new challenge of keeping up with the many views that can now be created against a single table. Such as to display one set of...
March 19, 2014 at 1:54 pm
CASE
WHEN l.GNLFSMID IN (127)
THEN SUM(l.GNLBalanceBase) OVER (PARTITION BY l.GNLCOAID)
ELSE '0'
See if this might help,...
July 31, 2013 at 10:19 am
Are the datasets in the reports using stored procedures or is the sql typed in directly? The former will be faster. If they are procedures... are they also slow when...
July 31, 2013 at 10:08 am
Viewing 15 posts - 1,021 through 1,035 (of 1,231 total)