Forum Replies Created

Viewing 15 posts - 4,606 through 4,620 (of 5,109 total)

  • RE: SSMS 2016 / Windows 10 / Multiple Desktops

    I'm yet to try out the feature myself, but I imagine it very much to be like the Multiple Desktop functionality that many Linux distributions have had for some time....

    Thom~

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

  • RE: Summarising Postcodes into Banding

    My above post, using Drew's groundwork, provides exactly what I need 🙂

    Thom~

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

  • RE: File Upload

    VastSQL (1/3/2017)


    Thanks Guys.

    The file is uploaded to application server itself initially and then data gets inserted into multiple tables once the validation is complete. The validation checks in many tables...

    Thom~

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

  • RE: Want to populate Col B (Datetime) from last 10 characters of Col A (nvarchar)

    You've only provided one line of sample data, so unsure this will work (I've guessed that the date is always at the end, and in the format dd/MMM/yy):

    USE DevDB;

    GO

    CREATE TABLE...

    Thom~

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

  • RE: File Upload

    What method are you using to upload and process the file? Is the file being uploaded to a Filestream table or a file system?

    How is SQL reading the file, SSIS?...

    Thom~

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

  • RE: Need help in SSIS(SSIS to MySQL ) error while updating date column to MYSQL

    Little confused firstly, are you using MySQL or SQL Server? You make several references to MySQL however this is a SQL Server forum, so which are you actually using? SSIS...

    Thom~

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

  • RE: Best way to publish 2012 SSRS reports on the web

    On the subject of allowing others to view, will they be accessing the report web portal directly (is that your intention, or how you want them to). If so, you...

    Thom~

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

  • RE: Issue with parameters

    This is to be expected. Functions require every parameter to be passed, regardless of if you're going to use them all.

    Try:

    SELECT * FROM dbo.Employee(@ID, @SCR, '*', DEFAULT);

    Thom~

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

  • RE: Summarising Postcodes into Banding

    I'll need to test some more when I return to the office after the New Year break, I don't have the data at home, but here is my solution incorperating...

    Thom~

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

  • RE: Summarising Postcodes into Banding

    Thank both, unfortuantely neither, at present do not meet specification (however, are close).

    Although, with the data I have are correct, would not work with others where the rating from...

    Thom~

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

  • RE: Numeric characters that are varchar type going into Excel column as string

    Kevin is correct. If visuals are that much of a problem, either align the columns yourself or create the report is SSRS and define it in your design.

    Exporting straight from...

    Thom~

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

  • RE: ssrs 2008 r2 export to excel issue

    Sounds like the xml for the document is poorly formed. This could be for a number of reasons.

    For example it could be that you have a name of a sheet...

    Thom~

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

  • RE: Pulling data from a SQL Xml Column

    This looks like your query before, but without the OR. Not sure if it should be there, but I have ommited it.

    I haven't tested this mind, as I don't have...

    Thom~

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

  • RE: Query with Date field = Null

    A simple OR Statement will suffice.

    AND (tblDataPermit.ExpirationDate <= @ExpirationDate

    OR tblDataPermit.ExpirationDate IS NULL);

    Thom~

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

  • RE: SQL syntax HELP

    mw112009 (12/29/2016)


    THOM A: I wanted you to modify the code for me.. (Please )

    You learn more if you try to do it yourself. Which you have done 😎

    Thom~

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

Viewing 15 posts - 4,606 through 4,620 (of 5,109 total)