Forum Replies Created

Viewing 15 posts - 4,126 through 4,140 (of 5,109 total)

  • RE: Need SQL query to get hierarchical structure of Employees

    Andrew doesn't have an entry in your sample data, is that intended? This exact code won't work if so (you should be able to amend it easily enough), but using...

    Thom~

    Excuse my typos and sometimes awful grammar. My fingers work faster than my brain does.
    Larnu.uk

  • RE: SSRS NUMERIC FORMATING ISSUE

    I'm not sure what the relevance of the above is. If you want the number "3" to be displayed as "0003" you would use the format "0000", not "####". The...

    Thom~

    Excuse my typos and sometimes awful grammar. My fingers work faster than my brain does.
    Larnu.uk

  • RE: sorting to show only few values at the start of the column

    Do you mean you want to Display "Presentation Layer Loaded", "SuccessfullyLoaded" and "Total Scrape" first, and then the rest? What is your defining order for these, is it "Presentation Layer...

    Thom~

    Excuse my typos and sometimes awful grammar. My fingers work faster than my brain does.
    Larnu.uk

  • RE: Need SQL query to get hierarchical structure of Employees

    Can you provide some Sample data and expected output please? See the link in my signature for details on how to supply this.

    Otherwise, I did quick

  • RE: SSRS NUMERIC FORMATING ISSUE

    What do you mean by "not showing up"? If a cell has a value in the formula bar, but not in the cell, it's because the value of the formula...

    Thom~

    Excuse my typos and sometimes awful grammar. My fingers work faster than my brain does.
    Larnu.uk

  • RE: Substring for Variable length

    Using Substring:
    USE DevTestDB;
    GO

    CREATE TABLE #Source (String varchar(255));
    GO

    INSERT INTO #Source
    VALUES
    ('model://MONEY/GBPCHF.3Y.BG0L.125'),
    ('model://INDEX/IMAREX.PANAMAX'),
    ('model://INDEX_New/JIBAR.Z2AR.12M1/LAST'),
    ('model://FXG_LBMA/EU.ME.LBMA.A3G_USD.FXG/PRICE');
    GO

    SELECT *
    FROM #Source;

    Thom~

    Excuse my typos and sometimes awful grammar. My fingers work faster than my brain does.
    Larnu.uk

  • RE: Substring for Variable length

    Perhaps I am missing something, but the position of both CMDTY and SRV_Name are in the same position in your example, so the following will always work:
    SELECT...

    Thom~

    Excuse my typos and sometimes awful grammar. My fingers work faster than my brain does.
    Larnu.uk

  • RE: Null Defaults

    Personally, I think it really varies on the data. There are some things where I will use NULL, where other times I will use a "Magic Number", or something else....

    Thom~

    Excuse my typos and sometimes awful grammar. My fingers work faster than my brain does.
    Larnu.uk

  • RE: CTE not working properly

    Could you provide Sample data, along with the expected output please. We have no idea what the problem is from your above post, as we don't have access to your...

    Thom~

    Excuse my typos and sometimes awful grammar. My fingers work faster than my brain does.
    Larnu.uk

  • RE: What is wrong with trasaction?

    I also would advise against using GOTO statements, you would be better off using TRY...CATCH syntax.

    Thom~

    Excuse my typos and sometimes awful grammar. My fingers work faster than my brain does.
    Larnu.uk

  • RE: Referencing another table throws off totals

    bzoom100 - Friday, March 3, 2017 8:39 AM

    Where and how would I place this filter so that it only effects the last...

    Thom~

    Excuse my typos and sometimes awful grammar. My fingers work faster than my brain does.
    Larnu.uk

  • RE: Beginner Query Excel to SQL

    Normally the ACE drivers are installed when you install Excel, do you have that installed on the machine you are using? If you have an older version of Excel installed,...

    Thom~

    Excuse my typos and sometimes awful grammar. My fingers work faster than my brain does.
    Larnu.uk

  • RE: Beginner Query Excel to SQL

    I assume that the path you have selected for your Excel Connection Manager is valid? Also, do you have the JET/ACE drivers installed?

    Thom~

    Excuse my typos and sometimes awful grammar. My fingers work faster than my brain does.
    Larnu.uk

  • RE: SSRS - Embed an external website into a SSRS report

    Personally, if this is the case, I would embed the SSRS report and CCTV page into another web page. Then you can display both pages.

    I also don't know...

    Thom~

    Excuse my typos and sometimes awful grammar. My fingers work faster than my brain does.
    Larnu.uk

  • RE: Performance of Temp table vs Variable Table in a Procedure

    John Mitchell-245523 - Friday, March 3, 2017 5:59 AM

    Yeah, I get the same on 2014 Developer.  And I can't find any authoritative...

    Thom~

    Excuse my typos and sometimes awful grammar. My fingers work faster than my brain does.
    Larnu.uk

Viewing 15 posts - 4,126 through 4,140 (of 5,109 total)