Forum Replies Created

Viewing 15 posts - 301 through 315 (of 402 total)

  • RE: Empty Date Display

    No Probs 🙂

    ==========================================================================================================================
    A computer lets you make more mistakes faster than any invention in human history - with the possible exceptions of handguns and tequila. Mitch Ratcliffe

  • RE: Query find occurence of string

    Its not pretty and there are better ways but without more information it is difficult to provide a solution.

    CREATE TABLE #temp

    (TextValue VARCHAR (5))

    INSERT INTO #temp

    SELECT 'efg' UNION ALL

    SELECT 'abc' UNION...

    ==========================================================================================================================
    A computer lets you make more mistakes faster than any invention in human history - with the possible exceptions of handguns and tequila. Mitch Ratcliffe

  • RE: Empty Date Display

    Hi

    You'll need to nest another IIF, something like this:

    =FormatDateTime(IIF(IsNothing(Fields!Planneddate.Value), IIF(IsNothing(Fields!appl_status_date.Value)," " , Fields!ActualDate.Value)))

    Andy

    ==========================================================================================================================
    A computer lets you make more mistakes faster than any invention in human history - with the possible exceptions of handguns and tequila. Mitch Ratcliffe

  • RE: Need help with my Query

    Hi

    Just a slight amendment to the query posted previously should do the trick for you

    SELECT *

    FROM #table1

    WHERE

    (ItemID LIKE 'LGE%' OR ItemID LIKE 'SAM%' OR ItemID LIKE 'HTC%')

    OR...

    ==========================================================================================================================
    A computer lets you make more mistakes faster than any invention in human history - with the possible exceptions of handguns and tequila. Mitch Ratcliffe

  • RE: I'm Sure its Something Simple! Returning Different Companies Based on Parameter

    Your requirement is logically inconsistent.

    Welcome to my world! I can't tell you how many times I've had to do some funky code to get around some requirements!!

    To be honest I'm...

    ==========================================================================================================================
    A computer lets you make more mistakes faster than any invention in human history - with the possible exceptions of handguns and tequila. Mitch Ratcliffe

  • RE: I'm Sure its Something Simple! Returning Different Companies Based on Parameter

    I know whats coming next - why then the company A filter!!

    I think I need to have a think how to explain this better!:crazy:

    ==========================================================================================================================
    A computer lets you make more mistakes faster than any invention in human history - with the possible exceptions of handguns and tequila. Mitch Ratcliffe

  • RE: I'm Sure its Something Simple! Returning Different Companies Based on Parameter

    Cadavre (4/3/2012)


    I may be oversimplifying what you've said but. . .

    You said. . .

    Andy Hyslop (4/3/2012)


    every row where CompanyA = 1 and CompanyB = 1 & 3 and where the...

    ==========================================================================================================================
    A computer lets you make more mistakes faster than any invention in human history - with the possible exceptions of handguns and tequila. Mitch Ratcliffe

  • RE: What's the difference between the Data Reconciliation layer and ETL processes?

    There should really be nothing as "stage database". It should be stage tables

    It depends I've seen warehouses where the staging tables are contained within the main DW and also (my...

    ==========================================================================================================================
    A computer lets you make more mistakes faster than any invention in human history - with the possible exceptions of handguns and tequila. Mitch Ratcliffe

  • RE: How to add Identity an existing column

    You can't alter a column and add IDENTITY, You have either create a new table or drop the column and re add with the IDENTITY property

    Andy

    ==========================================================================================================================
    A computer lets you make more mistakes faster than any invention in human history - with the possible exceptions of handguns and tequila. Mitch Ratcliffe

  • RE: Data Mining Data Warehouse For Beginners

    Koen Verbeeck (4/3/2012)


    The Kimball books are about design and architecture of a data warehouse.

    They are technology independant, so it should be your first read if you really want to go...

    ==========================================================================================================================
    A computer lets you make more mistakes faster than any invention in human history - with the possible exceptions of handguns and tequila. Mitch Ratcliffe

  • RE: Data Mining Data Warehouse For Beginners

    You may also find these useful:

    http://www.amazon.com/The-Microsoft-Data-Warehouse-Toolkit/dp/0470640383/ref=sr_1_6?s=books&ie=UTF8&qid=1333442957&sr=1-6

    http://www.amazon.com/The-Data-Warehouse-Toolkit-Dimensional/dp/0471200247/ref=sr_1_1?s=books&ie=UTF8&qid=1333442957&sr=1-1

    Andy

    ==========================================================================================================================
    A computer lets you make more mistakes faster than any invention in human history - with the possible exceptions of handguns and tequila. Mitch Ratcliffe

  • RE: SQL Server configuration table

    No probs 🙂

    ==========================================================================================================================
    A computer lets you make more mistakes faster than any invention in human history - with the possible exceptions of handguns and tequila. Mitch Ratcliffe

  • RE: how to prevent hidden part of report from exporting to excel

    I've never had to do this, however the link below may help you (it was interesting looking into it however thanks 🙂 )

    http://blog.hoegaerden.be/2011/01/18/ssrs-hideshow-items-dependant-on-export-format/

    Its not quite the same as what you...

    ==========================================================================================================================
    A computer lets you make more mistakes faster than any invention in human history - with the possible exceptions of handguns and tequila. Mitch Ratcliffe

  • RE: SQL Server configuration table

    Welsh Corgi (3/30/2012)


    Could someone please provide me with a script for a Database and Table to Store the Package Configurations?

    Thanks.

    When you choose to use the SQL Server package configs SSIS...

    ==========================================================================================================================
    A computer lets you make more mistakes faster than any invention in human history - with the possible exceptions of handguns and tequila. Mitch Ratcliffe

  • RE: deploy ssis configurations

    Hi Anthony

    Just a thought as I have only worked with XML configuration files a couple of times but have you tried using the SQL config tables instead of XML...

    ==========================================================================================================================
    A computer lets you make more mistakes faster than any invention in human history - with the possible exceptions of handguns and tequila. Mitch Ratcliffe

Viewing 15 posts - 301 through 315 (of 402 total)