Forum Replies Created

Viewing 15 posts - 121 through 135 (of 212 total)

  • RE: Code use in RS

    To start with, you're passing "BuildingTypes" which is a string, not an object (i.e. a DataTable).

    If anyone out there knows how to pass the "object" to code, please post.

    As an...

  • RE: MDX Performance - CrossJoin (many dimensions)

    Understanding performance in MSAS is quite a detailed topic. However, some things to get your started:

    - How big is your cube and how do you have it partitioned? Partitioning the...

  • RE: Incorrect Data returned by USP to SSRS

    Add an ORDER BY to your SQL statement.

    In general, you should never rely on embedded sort orders (i.e. view sorts, primary key of a table, etc.) to return the results...

  • RE: Server and service manager

    Make sure you're running Integrated and SQL Login configurations.

    It's been awhile since SQL 2000, but as I recall the default "sa" password should be blank. (Try logging in with user...

  • RE: Does size really matter?

    This post has opened up a really great set of dicsussions. To capture many on th points raised:

    - Size always matters. Small generally means nimble and flexible. Large brings up...

  • RE: Server and service manager

    I think he's just looking for a standard client / server set up.

    First, to make the server automatically appear in the client side tools, you need to make sure you...

  • RE: Trend Data

    Basically, you should consider loading the data into Analysis Services. The key will be getting your dimensions correct. While there isn't space to go into all of the design elements,...

  • RE: SS2K5 Newbie has question regarding SSIS Package Task...

    As already stated, SSIS has many methods to achieve what you're looking for. Alot of the specific recommendations depends on the data you're receiving and what you consider a duplicate...

  • RE: Integration Services upload of Excel file to SQL Server Table Error

    Have to state some of the obvious points:

    Does the file open / load in Excel? Any messages issuse there?

    What version of Excel was the file created in? (Office 2007 is...

  • RE: Designing Hierarchies

    Michael is bang on. I'd like to add a small qualification:

    Think hard about what you'd like the hiearchies to do / support. For example, based on your terms, I'd expect...

  • RE: Flat File Import, skip empty rows

    Actually, to scrub the records, It mighht be simpler to

    Task 1

    Import the whole record (no delimiters)

    Split the record stream

    Output to a temp file.

    Task Two

    ...

  • RE: Flat File Import, skip empty rows

    Try the following:

    REPLACE( [Column 0], "\\r\\l","" )

  • RE: can i reference the shared data source in my Code in SSRS?

    It would be helpful to get an idea of what you're attempting to do, but a suggestion:

    Create your shared data source and the dataset you're looking for. Create a table...

  • RE: Import Multiple txt files and append to 1 table

    Sarah,

    You don't really need to go the activex route, although that's one way to go. Some suggestions:

    - Rather than importing each file into a separate table, have you considered the...

  • RE: RS Data Driven Subscription w/MDX

    To fully understand what Report Services is expecting for it's parameters, check out the properties/parameter tabe for a report that has a default value. You'll see the MDX encoding there...

Viewing 15 posts - 121 through 135 (of 212 total)