Viewing 15 posts - 6,436 through 6,450 (of 8,416 total)
Jack Corbett (1/8/2010)
January 8, 2010 at 11:57 pm
I think you just need the STDistance method. The following will help you:
http://blogs.lessthandot.com/index.php/DataMgmt/DataDesign/sql-server-2008-proximity-search-with-th
January 8, 2010 at 4:20 am
Please try to be more clear in your first post next time. Thank you.
January 8, 2010 at 12:51 am
DECLARE @data TABLE (test_id INT PRIMARY KEY, gender TINYINT NOT NULL CHECK (gender BETWEEN 1 AND 2));
INSERT @data VALUES (1,1), (2,1), (3,2);
SELECT
test_id,
male = CONVERT(BIT, gender - 2),
female...
January 7, 2010 at 11:07 pm
I agree with Lutz that you are fighting a poor database design here, however:
DECLARE @Cogs TABLE (company_id INT PRIMARY KEY, cogs INT NOT NULL);
DECLARE @Sprockets TABLE (company_id INT PRIMARY KEY,...
January 7, 2010 at 11:00 pm
kiranbgiet (1/7/2010)
The answer is ABCDas union remove all the duplicate values
if You want to retain all values please use UNION ALL 🙂
Thank you for your valuable contribution 😛
January 7, 2010 at 10:47 pm
January 7, 2010 at 10:46 pm
You might not want to full text index each column: full text search works best when searching over the 'full text' 😉
One approach would be to full text index a...
January 7, 2010 at 8:14 pm
...and if you don't want to remove the duplicates, use UNION ALL rather than UNION.
January 7, 2010 at 7:39 pm
The way I read the article, the question was whether rolling back a transaction would also roll back any writes to the snapshot. This is quite different from suggesting...
January 7, 2010 at 7:19 pm
Alvin Ramard (1/3/2010)
CirquedeSQLeil (1/3/2010)
Anybody else see that Alvin morphed from a chipmunk to a human being?... which proves Darwin's theory of evolution?
Gah! I went back seven pages (at 50...
January 3, 2010 at 11:30 pm
It is the checkpoint process, waiting to service the next checkpoint request. Totally normal and nothing to worry about. See http://msdn.microsoft.com/en-us/library/ms179984.aspx for a description of the wait types...
December 30, 2009 at 3:15 am
timothyawiseman (12/29/2009)
December 30, 2009 at 3:05 am
TheSQLGuru (12/24/2009)
December 27, 2009 at 3:18 am
Jacob Luebbers (12/23/2009)
Paul White (12/14/2009)
December 27, 2009 at 3:10 am
Viewing 15 posts - 6,436 through 6,450 (of 8,416 total)