Viewing 15 posts - 151 through 165 (of 5,102 total)
Google is your friend:
http://www.sqlteam.com/article/sql-server-indexes-the-basics
Here is another from Brent Ozar:
http://www.brentozar.com/archive/2006/04/sql-server-training-for-developers-primary-keys-indexes/[/url]
May 5, 2009 at 7:51 am
Edwin (5/4/2009)
I need to restore those index views into original table on my subscriber database
Edwin, you just create a normal view with the name of the source table :
CREATE...
May 5, 2009 at 7:44 am
by capturing statement completed you maybe able to tell what is being executed.
May 4, 2009 at 12:53 pm
exec sp_tables N'PROBABLYNOT',NULL,NULL,N'"''TABLE''"'
Is coming from Hibernate. You should be able to use some cheaper setting on the Test Connection Query as well as the way in which 3cp0 handles...
May 4, 2009 at 12:52 pm
Here is some info about verifying/correcting the number of Virtual Log Files:
http://www.sqlskills.com/BLOGS/KIMBERLY/post/8-Steps-to-better-Transaction-Log-throughput.aspx
May 4, 2009 at 12:47 pm
Yup this is MySQL Code you are posting in the wrong forums!!!
May 4, 2009 at 12:42 pm
Edwin (5/4/2009)
I divieded the original table on my transaction replication into two index views.
Original Table: T
able TestTable
PK1,PK2, PK3, PK4, col1, col2, col3,col4.
CREATE VIEW idxview1 WITH...
May 4, 2009 at 12:40 pm
Edwin (5/4/2009)
Hi Noel,I have not implemented one yet.
Would you mind share with me, pls send to tjedwin@gmail.com?
Thanks,
Edwin
Here is an example:
CREATE TRIGGER [TR_Yourtablename_instead_of_iud] ON [Yourtablename]
INSTEAD OF INSERT,UPDATE,DELETE...
May 4, 2009 at 12:38 pm
Great debate. My vote goes for 13 separated databases!
May 4, 2009 at 11:59 am
In addition the composition of the files and the DDL for the tables is needed.
May 4, 2009 at 11:34 am
I personally use instead-of triggers marked as NFR. It has worked very well for me.
May 4, 2009 at 11:06 am
If you don't allow deletes and somehow you are running updates on Primary Keys or unique indexes columns, these get replicated as a Delete+Insert. Because the deletes were not sent...
May 4, 2009 at 8:50 am
This usually happens due to resource contention on the server. Verify if you have a very high number of locks in distribution DB.
Also ensure that the timeout values for...
May 4, 2009 at 8:45 am
Loops are not always "evil". The time spent backing up the DB is orderS of magnitude higher than the little looping time to get next DB name.
Now, for querying data...
April 30, 2009 at 1:50 pm
you should add "statement:completed" to see the text in the trace.
April 30, 2009 at 1:43 pm
Viewing 15 posts - 151 through 165 (of 5,102 total)