Viewing 15 posts - 121 through 135 (of 310 total)
Thank's David,
Really apreciated.
I will now make my own research based in this "new" info.
Best regards,
Carl
November 3, 2005 at 6:22 am
Hello David,
Thank's, important to know...
But where it is stated that update statements will take their locks in that order (table followed by index) and select statements will take their locks in...
November 2, 2005 at 7:31 am
Thank's for that information. Very helpfull.
Regards,
Carl
November 2, 2005 at 6:19 am
It is a "best practice"? I did not know... But it make sense.
October 28, 2005 at 6:53 am
Hello Remi,
Yesterday, I've found the solution :
In the trigger I just put SET NOCOUNT ON | OFF embeding the insertion in the audit table and it solve the problem.
Here is...
October 28, 2005 at 6:27 am
Hello Remi,
You confirm me that the rturn value of the ExecuteNonQuery() is affected by the variable @@rowcount? Or is it just a guess?
For your question the answer is: It is...
October 27, 2005 at 1:37 pm
Hello Jamie,
With Oracle you have a lot of flexibility in doing hierarchical queries.
Not only CONNECT BY but also many other analytic functions:
RANK, DENSE_RANK, LEAD, LAG, ... to use with OVER...
October 25, 2005 at 7:58 am
Hello Marilyn,
This is not exactly what you want but there is an interesting article in the september/october issue of SQL Server central magazine about a cluster migration from Win2000 to...
October 6, 2005 at 6:56 am
Ok Thanks Gregory,
If possible can you post the solution (if MS find something) in order to let everyone benefits from that?
Best regards,
Carl
October 5, 2005 at 8:38 am
Hello Gregory,
Have you found something new about that problem?
Thank's
Carl
October 5, 2005 at 8:18 am
Hello RGR'us,
Yep... This is why the other solution is also something we will look at (computed columns).
Thanks again,
Carl
September 27, 2005 at 2:53 pm
Sure...
Just have to modifiy the val column to Latin1_General_CI_AS (case insensitive).
Than rebuild the index on that column (because you have to drop it before modifying the column).
After that just have to...
September 27, 2005 at 2:41 pm
Hello RGR'us,
Finally found what I was looking for: doing an efficient case-insensitive search in a database that is case-sensitive.
Thank's for your help.
Carl
September 27, 2005 at 2:33 pm
You need a database with this collation : Latin1_General_CS_AS.
Create a table with only two columns:
Create table test (id int, val varchar(9))
Insert about 100 rows with distinct values for the val...
September 27, 2005 at 2:12 pm
Viewing 15 posts - 121 through 135 (of 310 total)