Forum Replies Created

Viewing 15 posts - 5,041 through 5,055 (of 6,036 total)

  • RE: trigger help needed

    Which problem?

    There is no any problem except the one you created.

  • RE: words of a string

    But you don't process data in SQL Server, as I can see.

    You store it as you get it in free text. And when you need to get something from it...

  • RE: words of a string

    I'm not attacking your solution.

    I just don't see any point of purchasing SQL Server licenses if you are using this kind of solutuions.

    What's gonna change if we make little change...

  • RE: words of a string

    They are not opposite.

    They are about different things.

    For the approach we can see in Sergei's post there is no need in SQL Server. I don't see any of RDMS...

  • RE: words of a string

    Which search do you mean?

    Like Google?

    There is no way. It must be proper database solution. 95% done on "storing strings" part, and 5% on "searching and retrieving" part.

    Like 10000...

  • RE: words of a string

    Good enough, you say?

    Go to Google and start search by some long string.

    Number of searched pages is definetely more than 10000, and result will be returned in less than a...

  • RE: Linked Server - User Defined Functions

    For this you need to use linked server.

    Something like this:

    sp_addlinkedserver [REMOTE_SERVER_NAME]

    SELECT ReturnValue FROM OPENQUERY ( [REMOTE_SERVER_NAME] , 'Select [REMOTE_SERVER_NAME].Database.dbo.userdefinedfunction(@Param1) as ReturnValue' )

    But actually calling UDF on remote server is not...

  • RE: Any general reason a SP runs slower via a job vs. by itself?

    You know, Lee, I don't believe it could take 30 seconds to just pull some records and copy it to another table, even if that table is another database.

    Unless these...

  • RE: trigger error

    Actually this query is quite OK.

    But you say you want an UPDATE and performing INSERT.

    And your INSERT potentially creates duplications. It's not good.

    It must be something like that:

    UPDATE L

    SET JobCostCenter...

  • RE: Trigger Syntax Using Columns_updated

    Do you know anybody who is NOT in this situation?

  • RE: what would be faster

    I know 2 guys who definetely know the best practices on speeding up a text field search.

    They used their knowledge to create Google.

    May be ask them?

  • RE: trigger error

    Trigger does not have parameters.

    The only parameters for triggers are tables INSERTED and DELETED.

    Only things trigger may reference from outside world are other tables in database.

    So, there is no...

  • RE: Linked Server - User Defined Functions

    Is it scalar or table function?

  • RE: Linked Server - User Defined Functions

    Why not just try?

  • RE: Trigger Syntax Using Columns_updated

    Neither of the triggers must be done here.

    What needs to be done is a guy who use to draw spreadsheets must learn some basics about relational databases and stop putting...

Viewing 15 posts - 5,041 through 5,055 (of 6,036 total)