Viewing 15 posts - 46 through 60 (of 72 total)
Thanks Kenneth - it was informative. I will make the corrections.
I could not understand this part:
INSERT INTO TargetTable (ColumnList)
SELECT ColumnList FROM SourceTable s
LEFT JOIN TargetTable t ON s.PrimaryKey=t.PrimaryKey
WHERE t.PrimaryKey IS...
July 8, 2005 at 3:22 pm
OK
I am actually using the identity col approach at the moment. But there will be situations when I cannot use Identity col all the time. I have different tables that...
July 7, 2005 at 10:07 am
Hi Remi
I am writing a stored procedure that opens a cursor with all the records (select * from @table) of the tablename supplied as parameter by the user. It formates...
July 7, 2005 at 9:40 am
Fantastic - thanks a lot Brendthess. I really appreciate it
July 7, 2005 at 9:12 am
I mean the n (max value) from the result set - can that be removed?
June 21, 2005 at 10:37 am
Thats was fantastic, awesome, brilliant - thanks a lot Remi!
Is it possible to remove the Max co-ordinate from the result set? It needs to be removed from Group By as...
June 21, 2005 at 10:35 am
Thanks for the reply Remi - but it is not the Minimum it is the first value in the group that I want in the result set.
June 21, 2005 at 9:46 am
And about locks - they are normal. Its the time for which the locks are held determines if system performs good or bad. Read BOL
June 12, 2005 at 9:21 am
Andy there is no straight answer to your question. SP: Recomple event tells u if the stored proc is compiled more than once, which causes performance problems. SP should always...
June 12, 2005 at 9:20 am
The columns in the where clause are good candidates. U can use Index Wizard to build indexes based on sql scripts.
June 12, 2005 at 9:12 am
Maintains a record of the rows that have been modified in a system table, and propagates the changes to the full-text index. You start the change...
May 27, 2005 at 2:18 pm
Question:
Maintains a record of the rows that have been modified in a system table, and propagates the changes to the full-text index. You start the change...
May 27, 2005 at 2:16 pm
KBLink:237604.KB.[LN]: PRB: SQL Server Agent does not start and
displays error 18456
KBLink:291255.KB.[LN]: BUG: IsAlive check does not run under the
context of the BUILTIN\Administrators account
KBLink:295034.KB.[LN]: FIX: Microsoft Search Service may...
May 27, 2005 at 2:09 pm
Once change tracking is enabled, the system table sysfulltextnotify is updated every time any of the columns in the full-text index is modified. This table basically just keeps track of...
May 27, 2005 at 1:59 pm
Viewing 15 posts - 46 through 60 (of 72 total)