Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)

  • RE: Order By Column

    Interesting, I never realised that you could order by a column alias.

    I have to admit that I assumed that the same principle of not being able to use column aliases...

  • RE: Stored Procedure Logging

    SQL Server 2012, with the SSIS Package being created in Visual Studio 2010

  • RE: Stored Procedure Logging

    Lowell (1/2/2014)


    can you add CLR procedures?

    I've not thought of that, but I'll have a look at that later. I'm not 100% sure that I'll be able to create CLR...

  • RE: LIKE - finding ']' or '.' in data

    Luis Cazares solution works for me. Thanks!

    Luis Cazares (12/2/2013)


    You could use an ESCAPE character.

    End SQL:

    DECLARE @Table1 TABLE

    (

    Column1 VARCHAR(32) NOT NULL PRIMARY KEY

    );

    INSERT @Table1(Column1)

    VALUES

    ('abcdef123'),

    ...

Viewing 4 posts - 1 through 4 (of 4 total)