Viewing 15 posts - 1,591 through 1,605 (of 4,820 total)
Orlando Colamatteo - Monday, April 2, 2018 7:44 PMCould it be that there is different data across environments?
That's a strong likelihood. Development...
April 3, 2018 at 11:00 am
April 3, 2018 at 10:54 am
Does anyone know if it is possible to use HARMONY web service in SSIS?...
April 3, 2018 at 10:46 am
If you decide to stick with the current methodology, here's the how:--USE [AdvWorks]
GO
SET ANSI_NULLS ON;
GO
SET QUOTED_IDENTIFIER ON;
GO
CREATE PROCEDURE [dbo].[usp_dbo_create_views_triggers] (
@Database_Name sysname
)
AS
April 3, 2018 at 10:43 am
You need to make the entire set of code dynamic, as having your USE statements separately executed makes them useless. Alternatively, you could instead use sp_MSForEachDb, which is undocumented by...
April 3, 2018 at 10:28 am
Make sure your job step actually fails the job if it fails. Also check your stored procedure to at least be sure it produces a recordset. Finally, verify that your...
April 3, 2018 at 10:12 am
April 3, 2018 at 9:12 am
Try this on for size. I'm assuming that the estimated monthly payment in your temp table was already calculated as the payment and that I didn't need to compute the...
April 3, 2018 at 9:04 am
Well, ... I'm guessing very few people mess with ROLLUP or with GROUPING SETS, so I've gone ahead and SELECTed from the query above as a sub-query, with an ORDER...
April 2, 2018 at 8:13 am
When you say purge, exactly what does that mean? If you don't need ANY of the data, it might be prudent to make a FULL backup and LOG backup for...
April 2, 2018 at 7:37 am
April 2, 2018 at 7:30 am
April 2, 2018 at 6:55 am
I don't think it has anything to do with Agent. That whole mess can...
April 2, 2018 at 6:30 am
April 2, 2018 at 6:14 am
April 2, 2018 at 6:00 am
Viewing 15 posts - 1,591 through 1,605 (of 4,820 total)