Viewing 15 posts - 31 through 45 (of 368 total)
jacroberts (5/6/2010)
bphipps-931675 (5/6/2010)
May 6, 2010 at 9:03 am
mike.renwick-894639 (5/6/2010)
May 6, 2010 at 8:41 am
I've been using source control (currently Perforce) for ALL of my database development (tables, FK constraints, functions, stored procedures, views, triggers, etc.). I.e., everything. I also handle new...
May 6, 2010 at 8:10 am
I have encountered the exact same requirement where I needed to know what stored procedure was performing the data modification.
The technique that I used was to use CONTEXT_INFO as a...
April 16, 2010 at 8:21 am
This is a nice example of why you SHOULD NOT test @@ROWCOUNT at the start of a trigger and exit if the value is zero. Although this technique has...
April 14, 2010 at 9:07 am
Finnlake (4/12/2010)
Hi!So we will probably create a procedure taking all parameters and pass the set of positions to the stored proc as xml.
Using XML as a multi-row data transport...
April 13, 2010 at 7:06 am
Jobin Daniel (3/26/2010)
can u say how to pass a datatable to a stored procedure when using sqlserv2008?
Read the SQL Server 2008 documentation (Books Online):
Table-Valued Parameters (Database Engine)
http://technet.microsoft.com/en-us/library/bb510489.aspx
Also see MSDN...
March 26, 2010 at 6:52 am
Full-text is used to find things based upon search criteria.
What full-text indexing would do would be to tokenize all of the terms (words) and then index them. But NYPD...
March 25, 2010 at 9:01 am
"no" is a Stop (noise) word and will not be indexed. Which means that it cannot be searched.
My strong opinion: Eliminate the Stop (noise) words. You'll be better...
March 24, 2010 at 3:06 pm
A very generic question. As with everything, "it depends".
Search the forums as there are numerous threads and topics related to your problem.
For starters, see the already published articles.
Some links...
March 12, 2010 at 8:11 am
SQL Server's full-text subsystem cannot solve your problem for several reasons:
1. The number of "words" would not be accurate as the full-text indexer tokenizes the text into "terms" based upon...
March 3, 2010 at 8:17 am
Reminds me of a time back in the mid-70s when we did the first run of checks from the new Accounts Payable system. Back then checks were produced on...
February 22, 2010 at 10:54 am
Having also worked with Oracle for 25 years, Oracle has had user-specified database pages (e.g., 2K to 32K) for decades. See DB_BLOCK_SIZE. Rows were never limited to the...
February 11, 2010 at 7:59 am
We have encountered the same problem.
You will have to scrub the data stored in all of your text (char, nchar, varchar, nvarchar, etc.) columns to eliminate all invalid XML characters.
Valid...
January 27, 2010 at 10:16 am
WayneS (1/24/2010)
January 25, 2010 at 8:30 am
Viewing 15 posts - 31 through 45 (of 368 total)