Forum Replies Created

Viewing 15 posts - 721 through 735 (of 5,109 total)

  • Reply To: Looking for simple non-aggregate version of PIVOT to transpose Rows into Columns

    Even prior to SQL Server 2014 I would have recommended a Cross tab (Like I have done above). PIVOT is quite restrictive and unflexible. A Cross Tab is by far...

    Thom~

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

  • Reply To: Looking for simple non-aggregate version of PIVOT to transpose Rows into Columns

    Pivoting is a form of aggregation though; you can't pivot you're data without aggregating it somehow. That might be using SUM, or count, but it would also be by using...

    Thom~

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

  • Reply To: Help Edit Query

    uknites wrote:

    I want to know how I will do it directly via Query so that it shows me the contents of the entire table where I can modify the...

    Thom~

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

  • Reply To: How to update a field with leading zeros

    You can't put leading zeros on a numerical datatype, but you can on a (n)varchar. One method is using RIGHT:

    RIGHT(REPLICATE('0',7) + CONVERT(varchar(7),YourNumericalColumn),7)

    This assumes all values are positive.

    Thom~

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

  • Reply To: Is SSIS really that bad?

    Visual Studiom and SSMS, only being 32bit really confuses me. it honestly makes no sense. Especially when their "younger brother" VSCode and ADS are only available as 64bit applications.

    Thom~

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

  • Reply To: SQL Management studio 2014 express edition

    SSMS supports all version of SQL Server that were supported at the time of it's release, and sometimes is given compatibility for newer versions in patches (if a new client...

    Thom~

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

  • Reply To: Is SSIS really that bad?

    Jeff Moden wrote:

    I thought they got rid of everything that was 32 bit (tongue in cheek on that comment).

    Unfortunately, the problem is more related to the fact that people don't check...

    Thom~

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

  • Reply To: Backslash Line Continuation is interpretted literally

    Also, as a result the the behaviour, the QOTD I want to send is literally impossible to write, as the question becomes entire malformed.

    I have, however, attempted to guess it'll...

    Thom~

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

  • Reply To: Backslash Line Continuation is interpretted literally

    MVDBA (Mike Vessey) wrote:

    looks like it might be that the web control is trying to protect against HTML injection and forcing you to double escape the backslash

    it's fairly common

    very similar to the...

    Thom~

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

  • Reply To: Backslash Line Continuation is interpretted literally

    To add context, I'm trying to submit a QOTD about Backslash (Line Continuation) behaviour and I can't, as the question content becomes "malformed" due to the Backslash (Line Continuation) characters...

    Thom~

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

  • Reply To: Backslash Line Continuation is interpretted literally

    Appears this "feature" only occurs in Code Snippets, however, note that the \ is missing from the line outside of the code snippet.

    Will test using \\ now:

    Thom~

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

  • Reply To: Are the posted questions getting worse?

    Well, this is interesting. I'm trying to submit a new QOTD, and it *appears* that the very feature I'm trying to describe actually causes the question to become malformed when...

    • This reply was modified 6 years, 8 months ago by Thom A. Reason: Confirmed "feature"

    Thom~

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

  • Reply To: Are the posted questions getting worse?

    Some of those are, um... unique "requirements". O.o

    Thom~

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

  • Reply To: Are the posted questions getting worse?

    David Burrows wrote:

    Luis Cazares wrote:

    Also, the Browns … haven't even hosted a Superbowl. That's just sad.

    London has been cited several times for possible Superbowl and the new Tottenham Hotspur stadium was lauded for...

    Thom~

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

  • Reply To: Used Stored procedure in SSIS with different database name in DEV, Test and Prod

    patla4u wrote:

    All Databases is on same Instant but instance are different as well.. This is requirement as per DBA.

    Huh? A instance can't be the same instance and different instances. That's...

    Thom~

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

  • Viewing 15 posts - 721 through 735 (of 5,109 total)