Viewing 15 posts - 1,111 through 1,125 (of 5,103 total)
Matt Miller (6/20/2008)
GSquared (6/20/2008)
June 20, 2008 at 12:27 pm
Probably with varchar(max) you are ok. It will slow the query but maybe that is good enoug for what you want.
June 20, 2008 at 12:16 pm
you must definitely "limit" the Time column with a "range" once you do that you should be fine.
June 20, 2008 at 12:09 pm
the error is saying you can't put such column in a "GROUP BY"
June 20, 2008 at 12:03 pm
you won't get minimal logging if the destination table is not empty unless you use TABLOCK and there is only a single clustered index on it. The transaction log size...
June 20, 2008 at 11:55 am
you should look at "peer-to-peer" replication
June 20, 2008 at 11:48 am
you can mark them as NOT FOR REPLICATION and then publish the tables.
June 20, 2008 at 11:47 am
It also depends on how many subscribers you have perpublication. If it is 1-to-1 shared is probably Ok but if it is 1-to-many indepenedent can give you "flexibility" in management.
June 20, 2008 at 11:46 am
What about DDL Triggers ?
June 20, 2008 at 11:41 am
Jeff Shurak (6/18/2008)
thank you for your reply.I will look into SP2. For some reason though, I can't view the monitor when I right-click jobs.
it is actually UNDER...
June 18, 2008 at 2:28 pm
ramaanujamr (6/18/2008)
I used count to contactid,contact address and i want to total of contact for each contact.
SELECT StudentNo, COUNT(ContactId) AS contact
FROM ...
June 18, 2008 at 2:21 pm
Michael Earl (6/18/2008)
One partition per day? Having 700 partitions (one per day for two years) for any single table in your database is probably not really helping performance issues.
Probably...
June 18, 2008 at 1:43 pm
I think Ellis is right:
select name, system_type_id
from sys.types
where system_type_id in (35,99)
name system_type_id
-----------------------
text 35
ntext ...
June 18, 2008 at 12:14 pm
Matt Miller (6/18/2008)
GSquared (6/18/2008)
(Have to admit, I don't like the layout he...
June 18, 2008 at 12:02 pm
Viewing 15 posts - 1,111 through 1,125 (of 5,103 total)