Forum Replies Created

Viewing 15 posts - 2,806 through 2,820 (of 3,544 total)

  • RE: A Grain of Salt

    quoteYou know when you are trying to teach your kids to behave properly part of it is getting...

    Far away is close at hand in the images of elsewhere.
    Anon.

  • RE: A Grain of Salt

    Ah sorry

    wot is 'Eye dialect for what. Chiefly British.' Now don't ask me what 'Eye dialect' means

    Far away is close at hand in the images of elsewhere.
    Anon.

  • RE: A Grain of Salt

    What does what mean?

    You're confused!!!

    Far away is close at hand in the images of elsewhere.
    Anon.

  • RE: A Grain of Salt

    quoteI like statistics Especially those I have manipulated myself

    Wot your age

    Far away is close at hand in the images of elsewhere.
    Anon.

  • RE: how to strip non alpha numeric characters in sql query

    CREATE  FUNCTION dbo.test (@inputstring varchar(255))

    RETURNS varchar(255)

    AS

    BEGIN

    DECLARE @outputstring varchar(255)

    SET @outputstring = @inputstring

    DECLARE @pos int

    SET @pos = PATINDEX('%[^0-9A-Z]%',@outputstring)

    WHILE (@pos > 0)

    BEGIN

    SET @outputstring...

    Far away is close at hand in the images of elsewhere.
    Anon.

  • RE: abt IN operator

    Or

    SELECT * FROM CLIENTGROUP 

    WHERE CHARINDEX(''''+FK_CLIENTID+'''',@X) > 0

    nb this will do a scan and not a seek like the IN operator does so check performance

     

    Far away is close at hand in the images of elsewhere.
    Anon.

  • RE: PDF to SQL Server

    quoteActually my aim is to provide a search facility for our Web Server.

    That is why I do it....

    Far away is close at hand in the images of elsewhere.
    Anon.

  • RE: how to get back table with data aafter deleting it

    As McCork states if you have full recovery activated then

    backup current log

    backup full database (just in case)

    restore database from previous backup (last day backup)

    roll forward log

    Far away is close at hand in the images of elsewhere.
    Anon.

  • RE: SP problem

    Use a temp table and a loop

    CREATE TABLE #temp(....)

    DECLARE @startpos int,@endpos int

    SET @startpos = 1

    WHILE (@startpos < LEN(@UnitID))

    BEGIN

        SET @endpos = CHARINDEX(',',@UnitID+',',@startpos)

        INSERT INTO...

    Far away is close at hand in the images of elsewhere.
    Anon.

  • RE: PDF to SQL Server

    What I do

    1. Use Acrobat (min v5) to save the PDF in RTF format

    2. Use Word op open RTF file

    3. Copy text and store in database

    I do 1 manually and use...

    Far away is close at hand in the images of elsewhere.
    Anon.

  • RE: Can you write out multiple views automatically?

    quoteMy wife has some very efficient methods to bring me back to reality

    I know what you mean and...

    Far away is close at hand in the images of elsewhere.
    Anon.

  • RE: Can you write out multiple views automatically?

    Language barrier! burn that midnight oil ???

    Careful you don't break your arm patting yourself on the back

    Far away is close at hand in the images of elsewhere.
    Anon.

  • RE: Using JOINS in SQL - help!

    Great explanation Thomas

    This is one of my favourite mistakes and now is the first thing I look for in duplicate results

    Far away is close at hand in the images of elsewhere.
    Anon.

  • RE: Can you write out multiple views automatically?

    Bah phoey Frank! But hey you do burn that midnight oil eh Glad my PC has...

    Far away is close at hand in the images of elsewhere.
    Anon.

  • RE: Can you write out multiple views automatically?

    Modest as ever Frank.

    Far away is close at hand in the images of elsewhere.
    Anon.

Viewing 15 posts - 2,806 through 2,820 (of 3,544 total)