Viewing 15 posts - 2,821 through 2,835 (of 5,103 total)
If you looked at the poster you guessed it right! ![]()
August 18, 2005 at 8:45 am
So far I am with the others NO CURSOR NEEDED to accomplish that ![]()
August 18, 2005 at 8:42 am
Guessing is a good part of this kind of questions .... I'd guess ![]()
August 18, 2005 at 8:40 am
Not sure but shouldn't it be :
SELECT DATEPART(YEAR, SaleDate) SaleYear, Product, AVG(SaleQty)AvgSales
FROM
orderdetail
GROUP BY DATEPART(YEAR, SaleDate), Product
At least that's what I interpret by accross all years and months...
August 18, 2005 at 8:32 am
Just want to add that when the number of repeated keys on the inner table is large exists is always a superior choice but when the keys are not repeated too...
August 18, 2005 at 7:55 am
did you use sp_rename for that?
if yes did those tables had triggers on them ?
if yes fix the triggers ![]()
August 17, 2005 at 3:05 pm
You need to have a look at Alternate synchronization partners
August 17, 2005 at 3:03 pm
Not sure why it doen't for you it still does for me!
The following link is one step before the download. Try clicking on the right hand side link and see...
August 17, 2005 at 3:00 pm
I don't use enterprise manager except for the cases in which I have no other choise. My approach is
1. find all the tables that are on the Filegroup that...
August 17, 2005 at 2:50 pm
You are going to need to talk to your network guys apparently someone applied a strong security template GPO to your server if what you said is the case
August 17, 2005 at 2:39 pm
Try:
EXECUTE sp_makewebtask @outputfile = 'd:\harvestwise\hwsystem\pickup\PMDRpt.html', @query = 'EXECUTE YMCA.dbo.spMoveSelect @Action=3, @ID=0, @Var1=19', @templatefile = 'd:\harvestwise\hwsystem\pickup\PMDRpt.tpl'
Cool name for a DB ![]()
August 17, 2005 at 1:25 pm
You should look at implementing Multiserver administration with SQLServerAgent
Have a look at that topic in BOL.
August 17, 2005 at 1:23 pm
SELECT orderNum, Sum(Convert(decimal(10,2), shipamt)) as totalShipped FROM invoiceData
WHERE shipamt <> ''
GROUP BY orderNum
August 17, 2005 at 10:47 am
With stored procedures you code manually the deletes starting from the lowest in the hierarchy! with triggers you could do the same thing but Triggers are more difficult to debug maintain...
August 17, 2005 at 10:41 am
AWE is not needed when Windows total memory is 4GB!!!
August 17, 2005 at 10:19 am
Viewing 15 posts - 2,821 through 2,835 (of 5,103 total)