Forum Replies Created

Viewing 15 posts - 13,366 through 13,380 (of 18,923 total)

  • RE: SQL2000 Stored Procedure

    Not worthless... this is what we call experience .

  • RE: SELECT LIKE statment

    The name says it. It's computed (calculated) on the fly when you request it in a select. It's usefull when you have complexe calculations that you want to...

  • RE: Multiple ''''Distinct'''' SQL syntax needed!

    Still takes 12 queries to populate the dataset (at least one per col) + 1 to call that one, not to mention the inserts in the table...

  • RE: SQL2000 Stored Procedure

    Well you'd use some dll in sql server to do that... which would be written in vb. So I think the simplest way would be to handle that all...

  • RE: SELECT LIKE statment

    Because if you use where replace (col..) = @SomeVar, you'll get an index scan all the time. however if you use the computed column (which updates itself BTW), amd...

  • RE: SQL2000 Stored Procedure

    Seems to me like you're already able to do all the stuff programatically at some point in the program. What forbids you to send the jpegs over ftp, or...

  • RE: SELECT LIKE statment

    Doh...

    try it like this :

    LEFT(REPLACE(Colname, ' ', ''), (length of the original column)

  • RE: SELECT LIKE statment

    EPNOM is the name of the other column you need to replace the spaces from.

  • RE: SQL2000 Stored Procedure

    What do you need to do exactly to transer the info (from where to where)?

  • RE: SELECT LIKE statment

    dbo.Temps is the table name

    demo is the name of the new column.

  • RE: SQL2000 Stored Procedure

    This is the job of an application... not the server's job.. check out .net help. It's supposed to be easy to do .

  • RE: SQL2000 Stored Procedure

    Why do you want to do that?

  • RE: SELECT LIKE statment

    ALTER TABLE dbo.Temps ADD

     demo  AS replace(EPNOM, ' ', '')

    GO

    CREATE NONCLUSTERED INDEX IX_Temps_Demo ON dbo.Temps (demo)

  • RE: SELECT LIKE statment

    Well sooner done than said... You were still a little late on this one .

  • RE: SELECT LIKE statment

    Create an indexed calculated column that strips out the spaces. Then do the search on the column (making sure that the search parameter doesn't have spaces too).

Viewing 15 posts - 13,366 through 13,380 (of 18,923 total)