Viewing 15 posts - 5,041 through 5,055 (of 6,036 total)
Which problem?
There is no any problem except the one you created.
September 25, 2006 at 2:28 am
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...
September 25, 2006 at 1:47 am
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...
September 24, 2006 at 8:30 pm
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...
September 24, 2006 at 7:39 pm
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...
September 24, 2006 at 6:01 pm
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...
September 24, 2006 at 3:33 pm
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...
September 23, 2006 at 9:55 pm
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...
September 23, 2006 at 5:36 pm
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...
September 22, 2006 at 7:52 pm
Do you know anybody who is NOT in this situation?
September 22, 2006 at 7:28 am
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?
September 22, 2006 at 6:09 am
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...
September 22, 2006 at 6:00 am
Is it scalar or table function?
September 22, 2006 at 4:47 am
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...
September 22, 2006 at 3:35 am
Viewing 15 posts - 5,041 through 5,055 (of 6,036 total)