Viewing 12 posts - 46 through 57 (of 57 total)
thnx!! It is indeed an option to drop the index, add the data and build the indexes again.
However: there are about 100.000.000 rows of statistics, so rebuilding the index will...
October 23, 2008 at 5:30 am
TheSQLGuru (10/21/2008)
October 22, 2008 at 12:01 am
In a trigger you can select the data before the change from the "deleted" table, and the data afther the change in de "inserted" table (well, it isn't realy a...
September 25, 2008 at 1:51 am
you should use the "deleted" and "inserted" tables in your trigger:
ALTER TRIGGER [dbo].[USER_UPD_HIST] ON [dbo].[User] FOR UPDATE
AS
BEGIN
INSERT INTO User_History(ID, Usermodified, etc.)
SELECT ID, Usermodified, etc.
...
September 25, 2008 at 1:29 am
As far is i know you have to use the CONTAINS method to make usage of the fulltext search.
So the answer is NO
But ofcourse there is a very simple way...
September 23, 2008 at 12:20 am
Thanks a lot, this is EXACTLY what i was looking for.
September 18, 2008 at 5:37 am
Thanks for your answers.
Unfortunately (and as you excpected) i have no proof of anything since there is hardly any monitoring done at our servers. I will see if i can...
September 18, 2008 at 3:17 am
Peso (6/12/2008)
CREATE PARTITION FUNCTION over your partitionNr column,
and have a job that runs nightly to update the partitionNr...
June 12, 2008 at 7:39 am
k, thnx!
but in your example you are using viewpartitioning like the blog you posted : http://weblogs.sqlteam.com/peterl/archive/2007/09/24/Horizontal-partitioning.aspx
When i use the SQL2005 feature of tablepartioting, this wil be the same...
June 12, 2008 at 7:23 am
John Rowan (6/11/2008)
Here's a great resource for SQL Server 2005 partitioning:
I read the whole document, but i still have 2 questions:
1. My table is already filled with data, is it...
June 12, 2008 at 6:30 am
We access the data always by idproject, but also by date. I know partitioning by date is common and even in my case a good option. But the majority of...
June 11, 2008 at 11:57 pm
Viewing 12 posts - 46 through 57 (of 57 total)