Viewing 15 posts - 3,916 through 3,930 (of 5,103 total)
If you can't follow Chris Suggestions try to order the Cluster index in descending order like
Create clustered idx_name on interface (interfaceid desc) ...
I really would advice againt order by in...
April 18, 2005 at 11:58 am
you may want to have a look at sp_create_removable
![]()
hth
April 18, 2005 at 11:45 am
As you have discovered there is no GUI list interface to that info but you could write a query to extract it ![]()
Have a...
April 18, 2005 at 11:38 am
When these things happen to me is usually an indication of lack of Caffeine in my veins ![]()
I get a cup or two...
April 18, 2005 at 11:31 am
Look at your code:
DTSSource("Col011")\100
Is using integer division
you should change it to Real Division
DTSSource("Col011")/100
HTH
April 18, 2005 at 11:10 am
>>That would mean retyping the same chunk several times. Is there any other, more modular way?<<
Yes there is! Use a Subquery and you will be happy
Select
ExecCharge,
NetBroker = (RateBroker...
April 18, 2005 at 11:00 am
You can wrap that logic in a custom resolver! use an stored procedure ans mark the article resolver to use that sp.
For more info look in BOL at
Custom Stored...
April 18, 2005 at 8:35 am
Charles,
The more I look to it the more it looks as a diskspace problem.
you said
>>Each time an affected table is removed, another one take's it's place, but always the same...
April 18, 2005 at 8:28 am
>>Check connectivity as well.<<
did you logged in with the SQL agent account and tested? and if so how did you?
There are other things you could change like "QueryTimeOut" in the...
April 18, 2005 at 8:19 am
can you manually bcp that table out?
April 15, 2005 at 2:19 pm
You could but it makes it unportable and risky.
Is is better to Create an special DB just for those on your servers so that you are granted to have that...
April 15, 2005 at 2:17 pm
Just for the fun of it allow me to introduce another point of view.
Yeah the case statement may be more performant that PWs but I would choose PW for superior...
April 15, 2005 at 1:10 pm
why would you need to move the DBs if they are replicated ?
April 15, 2005 at 12:41 pm
and what about changing snapshot to CHARACTER mode instead of native ?
April 15, 2005 at 12:38 pm
Viewing 15 posts - 3,916 through 3,930 (of 5,103 total)