Viewing 15 posts - 1 through 15 (of 30 total)
August 10, 2017 at 10:36 am
August 10, 2017 at 5:22 am
August 9, 2017 at 3:42 pm
I have to send an empty array.
So, there is a parameter which allows multiple values. It is of type integer. I can send multiple integers as a value of...
August 9, 2017 at 11:34 am
The Dixie Flatline (8/4/2016)
August 4, 2016 at 12:07 pm
drew.allen (8/4/2016)
Boris Pazin (8/4/2016)
drew.allen (8/4/2016)
August 4, 2016 at 9:20 am
drew.allen (8/4/2016)
Have you considered using SEQUENCE instead of an IDENTITY? Sequences are similar to identities, but they're not tied to a specific table.
Hey Drew, sequence is interesting idea. I...
August 4, 2016 at 8:52 am
Ian Scarlett (8/4/2016)
More questions than answers, I'm afraid, but...
It is a little harder, I try different approaches but they mostly look ugly for now. 🙂
Ian Scarlett (8/4/2016)
August 4, 2016 at 8:46 am
Sean Lange (8/4/2016)
August 4, 2016 at 8:34 am
I just tried a query like
SELECT ID, string FROM test
INNER JOIN containstable(test, string, 'C#')
AS KEY_TBL ON test.ID = KEY_TBL.
It is very interesting that it returns correct results on SQL Server...
February 10, 2014 at 3:40 pm
jethrow (8/18/2013)
CREATE FUNCTION AlphaNum (@s varchar(100))
RETURNS varchar(100) AS
BEGIN
Declare @n int = PatIndex('%[^A-Z0-9]%', @s-2);
While...
August 26, 2013 at 9:22 am
Erland Sommarskog (8/16/2013)
... but it may be the fact that the jobs adds a lot of rows to some tables and so on.
Maybe this could be a reason. Once per...
August 17, 2013 at 12:50 am
wolfkillj (8/16/2013)
August 16, 2013 at 10:08 am
Thanks GilaMonster and Steve for clarifying!
Jobs are done, night has passed, CPU usage is low, website is still fast. I guess it's all good. 😎
August 15, 2013 at 6:48 am
Eugene Elutin (11/28/2012)
"Commonly" in SQL 2005 it's done by editing content of the Noise-word files.
Hi Eugene, thanks for response!
It looks like noise words are practically useless.
I can't ask website...
November 29, 2012 at 3:34 am
Viewing 15 posts - 1 through 15 (of 30 total)