Viewing 15 posts - 4,276 through 4,290 (of 7,187 total)
Not only can you do it one single job, you can do it in one single job step, in the way I suggested above.
John
November 20, 2012 at 3:00 am
I didn't go anywhere. What is your question?
John
November 20, 2012 at 2:56 am
(1) This information is already stored in sysjobhistory in msdb.
(2) Use the COUNT agrregrate function.
If you need more detailed help than that, please specify your exact requirement, including table DDL,...
November 19, 2012 at 7:35 am
If the WHERE clause includes a condition on the outer table, as your example does, then yes, the outer join is turned into an inner join. Try making the...
November 19, 2012 at 5:47 am
Something like this?
EXEC DB1.dbo.MySP
EXEC DB2.dbo.MySP
EXEC DB3.dbo.MySP
EXEC DB4.dbo.MySP
EXEC DB5.dbo.MySP
EXEC DB6.dbo.MySP
EXEC DB7.dbo.MySP
EXEC DB8.dbo.MySP
EXEC DB9.dbo.MySP
EXEC DB10.dbo.MySP
EXEC DB11.dbo.MySP
EXEC DB12.dbo.MySP
EXEC DB13.dbo.MySP
EXEC DB14.dbo.MySP
EXEC...
November 19, 2012 at 4:47 am
Don't use a script task. It's more complicated and it means you have to edit the package every time you want to change the value of the variable. ...
November 15, 2012 at 6:47 am
It may be that your websweeper blocks certain keywords. I've had that happen to me before. Try attaching a .txt file instead.
Please make sure that your provide enough...
November 14, 2012 at 9:01 am
Table DDL, sample data in the form of INSERT statements, and expected results would have been helpful. In their absence, this is untested:
SELECT
AID
FROM
Table1 t1
LEFT JOIN
Table2 t2 IN t1.AID =...
November 14, 2012 at 8:16 am
How is the value of the Customer_ID variable assigned? If it isn't set by any logic within the package then it will use at runtime the value of the...
November 14, 2012 at 8:08 am
OK, I'm guessing here, since I can't work out why you group the MONEYREQUESTs where you do in your expected results, nor what the Comission and fee columns signify.
WITH Transactions...
November 14, 2012 at 7:29 am
Or use logarithms:
CREATE TABLE #john (ID int, Factor decimal(5,3))
INSERT INTO #john VALUES
(1,1.1),
(2,1.1),
(1,1.1),
(2,1.2)
SELECT * FROM #john
DECLARE @x decimal(5,3)
SET @x = 12
SELECT
ID
,EXP(SUM(LOG(Factor))) * @x AS Answer
FROM
#john
GROUP BY
ID
John
November 13, 2012 at 9:00 am
It's probably just a question of semantics. As I understand it, a high availability server can form part of a DR strategy. I don't think it matters whether...
November 13, 2012 at 1:50 am
If you want to copy the whole database, backup and restore is much cleaner. I'd only recommend snapshot replication if there are only certain tables that you want to...
November 13, 2012 at 1:30 am
We need a bit more information, please. Which database(s) will your DR strategy cover? I assume your Staging database is updated from the external sources and then your...
November 12, 2012 at 7:08 am
Inserts, etc are still logged in Simple mode. They're just removed more quickly. Have you tried switching to Full recovery mode and comparing the time taken?
John
November 12, 2012 at 6:49 am
Viewing 15 posts - 4,276 through 4,290 (of 7,187 total)