Viewing 15 posts - 12,136 through 12,150 (of 18,923 total)
Isn't this exactly why full-text search was invented??
April 25, 2006 at 6:41 am
You're better off starting a new thread on this board. It'll get much more exposure that way. Greatly improving your chances of getting an answer.
February 16, 2006 at 9:14 am
Good point to recall. Always validate client side first. Then revalidate on the server to be 100% sure. But I'd still go with a single transaction update...
February 2, 2006 at 2:22 pm
That's a very big assumption. If the tables are read-only then it's a simple process... But if it takes a 2 way replication, you got a whole lot more...
February 2, 2006 at 2:20 pm
I personally hate XML because it's too bloated so I'd go with the temp table approach. I don't think you have any other options in this case. Anyways...
February 2, 2006 at 9:03 am
I think you'd be better off creating an ADP (access data project). Basically the data resides on sql server only, but all the manipulations are made using access. ...
January 31, 2006 at 7:05 pm
It is but friday's not always the best day. Your answer will have a better chance of being answered when it's been presented in the newsletter (next monday).
January 27, 2006 at 2:14 pm
Is there a space here before the and??
"and Person"
Also if it's really an id as a number of some sort, then you really don't need to add the quotation marks.
January 26, 2006 at 9:29 am
--create all objects
IF EXISTS (Select * from dbo.SysObjects where name = 'Numbers' and XType = 'U' and user_name(uid) = 'dbo')
DROP TABLE Numbers
GO
CREATE TABLE dbo.Numbers (PkNumber int identity(1,1) primary key clustered,...
January 23, 2006 at 8:11 am
Ya... udf were introduced with sql 2k :-).
Glad you found the solution.
January 9, 2006 at 9:26 am
Can you provide more details??
January 8, 2006 at 10:05 am
Viewing 15 posts - 12,136 through 12,150 (of 18,923 total)