Viewing 15 posts - 616 through 630 (of 5,103 total)
Let's try now to use replication tools to verify that all credentials and proxy stuff are setup properly.
Open Replication monitor
Then Right Click on the Publication and select "Properties"
From there go...
January 28, 2009 at 3:42 pm
I have yet to see a case where code portability actually solved anything worthwhile for anyone. Doesn't mean they don't exist, just means I haven't seem them, in my...
January 28, 2009 at 3:15 pm
I notice that when connected via SSMS to the instance I cannot see SQLAgent; could this be part of the issue?
No that just indicates that the user Does not...
January 28, 2009 at 3:10 pm
branovuk (1/28/2009)
Basically, it looks like:
_____________________
SELECT Item.ItemLookupCode, Item.Description, Supplier.SupplierName, SUM(TransactionEntry.Quantity) AS Sold,
Item.Quantity AS OnHand,
SUM(PurchaseOrderEntry.QuantityOrdered - PurchaseOrderEntry.QuantityReceivedToDate) AS...
January 28, 2009 at 3:04 pm
I am sure MAXDOP will not help you anywhere there.
You must check the procedure piece by piece. On a first look it seems that too much IO is going on.
I...
January 28, 2009 at 2:30 pm
TroyG (1/28/2009)
January 28, 2009 at 2:18 pm
MAXDOP is a QUERY option
So you have to specify it per-query (at the end of the query)
I am not sure that in your case you want to do that!
January 28, 2009 at 1:36 pm
Boss: The company that just bought us loves your application and wants to start using it. The new data will total around 300 GB. How many days will...
January 28, 2009 at 1:24 pm
raj (1/28/2009)
can anyone help me on my query.
If you can't post DDL it will be hard to tell you what the problem is!
January 28, 2009 at 12:53 pm
SELECT t.ID, t.[Group], COALESCE(x.C,'Colonized')
FROM #mytable t
OUTER APPLY
( SELECT TOP (1) 'Not Colonized' as C
FROM #mytable t2
where t2.[Group] = 'ZGroup' ) x
January 28, 2009 at 12:47 pm
Jeff Moden (1/28/2009)
January 28, 2009 at 12:31 pm
Jeff Moden (1/27/2009)
noeld (1/27/2009)
I have found that the best solution for this is to use persisted calculated columns!
Haven't tried those yet, Noel... can you give us a quick "how...
January 28, 2009 at 9:50 am
colin Leversuch-Roberts (1/28/2009)
January 28, 2009 at 8:44 am
You won't probably be able to use 7.0 UI tools and the best way to set up the subscriber is going to be with TSQL stored procedures.
I have not used...
January 28, 2009 at 8:36 am
how do I get the log reader doing it's thing in verbose mode?
You open the SQL Agent Job that is running the LogReader and then add the Following parameters...
January 28, 2009 at 8:28 am
Viewing 15 posts - 616 through 630 (of 5,103 total)