Forum Replies Created

Viewing 15 posts - 1,036 through 1,050 (of 1,246 total)

  • RE: HOW TO EXPORT A TABLE TO A CSV FILE --IN MS SQL SERVER 2008

    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...

    ----------------------------------------------------

  • RE: ssrs 2008 missing parameter value

    Do you have anything configured under report properties for available values and default values that might cause this behavior?

    ----------------------------------------------------

  • RE: Perfomance due to foreign key

    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...

    ----------------------------------------------------

  • RE: Dynamic Dimension Security in Analysis Services based on User and Datasource Dimension

    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...

    ----------------------------------------------------

  • RE: Data Warehouse

    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...

    ----------------------------------------------------

  • RE: Get the hierarchy orders(top to bottom) of the table

    I've never tried a database diagram but it might be useful in this case to visualize the entity relationships.

    ----------------------------------------------------

  • RE: Perfomance due to foreign key

    There may also be triggers in place doing writes somewhere.

    ----------------------------------------------------

  • RE: Global BI Architecture

    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...

    ----------------------------------------------------

  • RE: Global BI Architecture

    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...

    ----------------------------------------------------

  • RE: How to convert nvarchar to date data type?

    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...

    ----------------------------------------------------

  • RE: Report Model Changes - How do I the DiscourageGrouping attribute for a field?

    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?

    ----------------------------------------------------

  • RE: Bulk Insert Issue

    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...

    ----------------------------------------------------

  • RE: Stairway to Advanced T-SQL Level 4: Using Views to Simplify Your Query

    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...

    ----------------------------------------------------

  • RE: Sum Negative Numbers

    CASE

    WHEN l.GNLFSMID IN (127)

    THEN SUM(l.GNLBalanceBase) OVER (PARTITION BY l.GNLCOAID)

    ELSE '0'

    See if this might help,...

    ----------------------------------------------------

  • RE: Reporting Services slow

    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...

    ----------------------------------------------------

Viewing 15 posts - 1,036 through 1,050 (of 1,246 total)