Forum Replies Created

Viewing 15 posts - 6,451 through 6,465 (of 8,753 total)

  • RE: Cte for String in random order

    peter.cox (12/11/2014)


    Sorry! Been ages.

    It was just a business requirement to search a free form field. Obviously with that being the case, people have the ability to put the data in...

  • RE: Help Needed in Stored Procedure

    Try this for a size

    😎

    declare @storedprocedure_name nvarchar(30) = 'my_proc_name';

    SELECT N'USE ' + DB_NAME() + NCHAR(59) + NCHAR(13) + NCHAR(10) +

    N'IF EXISTS (SELECT * FROM sysobjects...

  • RE: Pivoting hierarchial data

    Luis Cazares (12/10/2014)


    This isn't pretty, but it might be what you need to handle one to many relationships between managers and employees.

    Has the appeal of Cusano Rojo:rolleyes:,but it works

    😎

  • RE: Digits only

    Alan.B (12/10/2014)


    I'm curious (general question to everyone)...

    Wouldn't this be faster?

    -- the function

    CREATE FUNCTION dbo.DIGITSONLYAB(@pstring varchar(8000))

    RETURNS TABLE WITH SCHEMABINDING AS

    RETURN SELECT ISALLDIGITS = CASE PATINDEX('%[^0-9]%',@pstring) WHEN 0 THEN 1...

  • RE: Digits only

    djj (12/10/2014)


    Thanks Eirikur. just one question, what does "& 0x7FFF" do? I realize that the & is for "bitwise and", however I am not very good at...

  • RE: Use row_number() as default value of table column

    I know itΒ΄s not perfect, the dynamic is just to contain the whole thing in a single batch, took it from an old code of mine which took the table...

  • RE: Digits only

    Good catch, never tested the functions for a null value:pinch:, here is a revised version

    😎

    /* Eirikur's modification of Jeff's Modification of Erikur's Function */

    GO

    IF OBJECT_ID('dbo.DigitsOnlyEE') IS NOT NULL DROP FUNCTION...

  • RE: Use row_number() as default value of table column

    Quick solution using a calculated column

    😎

    USE tempdb;

    GO

    SET NOCOUNT ON;

    IF OBJECT_ID('dbo.TBL_ROWNUM') IS NOT NULL DROP TABLE dbo.TBL_ROWNUM;

    IF OBJECT_ID('dbo.UDF_COUNT_ROWS') IS NOT NULL DROP FUNCTION dbo.UDF_COUNT_ROWS;

    DECLARE @COUNT_FUNC NVARCHAR(MAX) = N'

    CREATE FUNCTION dbo.UDF_COUNT_ROWS

    (

    ...

  • RE: need help to pivot

    Quick cross-tab solution (hard coded)

    😎

    USE tempdb;

    GO

    SET NOCOUNT ON;

    IF OBJECT_ID('tempdb..#BATCH') IS NOT NULL DROP TABLE #BATCH;

    CREATE TABLE #BATCH

    (

    batch_Id VARCHAR(36)...

  • RE: How to download data from SQL Server in UNIX

    Quick thought, while the SSH will work it is not a perfect solution, relatively slow, increased attack surface etc.. Why not use ODBC connection from the UX? Or schedule a...

  • RE: Insert xml(with multiple nodes ) into table with query

    Quick solution using the nodes method

    😎

    USE tempdb;

    GO

    SET NOCOUNT ON;

    DECLARE @MyXML XML

    SET @MyXML = '<RS>

    <R id="6330">

    <WF id="71445">

    <WFS id="12790"> <fname>John12790</fname> </WFS>

    <WFS id="12791"> <fname>Eric12791</fname> </WFS>

    </WF>

    </R>

    <R id="6331">

    <WF id="71446">

    <WFS id="12793"> <fname>John12793</fname> </WFS>

    <WFS id="12794"> <fname>Eric12794</fname> </WFS>

    </WF>

    </R>

    </RS>';

    SELECT...

  • RE: Why β€œ3653.0 and 36524.0”?

    Quick joke, 36524 is the number of versions Jeff needs to upgrade on his old test box πŸ˜€

    😎

  • RE: Are the posted questions getting worse?

    Koen Verbeeck (12/8/2014)


    New type of spam:

    http://www.sqlservercentral.com/Forums/Topic1636920-391-1.aspx#bm1642200

    They enter a reply with the first reply of the thread copied into it (in this case, my reply) and then add a URL.

    More annoying...

  • RE: What Have You Learned Lately?

    Good points Steve and thank you for this editorial, brought back some nice memories! Back in the "old" days I used to make a living mountaineering and climbing, first rule...

  • RE: How to format unformated phone numbers Please...,

    DonlSimpson (12/8/2014)


    Are you required to store the number with the formatting? It can be easier to apply the formatting when retrieving the phone number.

    Quick thought, if there are formatting...

Viewing 15 posts - 6,451 through 6,465 (of 8,753 total)