Viewing 15 posts - 391 through 405 (of 686 total)
Maybe that's what I'm trying to ask, how do I only show diff's based upon columns that could be used for sort or key.
Thanks.
September 3, 2021 at 2:32 pm
How do you turn the above script into my requirement.
Thx.
September 3, 2021 at 1:28 pm
I'm on Standard 2012 edition.
Thanks for your efforts and input.
CREATE TABLE [dbo].[Error_Log](
[Error_Log_ID] [bigint] IDENTITY(1,1) NOT NULL,
[Error_DateTime] [datetime] NULL,
[Error_Type] [nvarchar](50) NULL,
[Error_Description] [nvarchar](max) NOT NULL,
[Error_User] [nvarchar](50) NULL,
[Error_Session] [nvarchar](50) NULL,
[Error_Procedure]...
August 27, 2021 at 12:02 pm
It's not that I'm unwilling to do a rewrite, it's I just like to make what is running today more efficient. I have already begun the process
to tear apart the...
August 25, 2021 at 11:47 am
Do you need to see other pieces of the code?
Thanks
August 25, 2021 at 12:25 am
When I run the piece for creating #staging:
Column name or number of supplied values does not match table definition.
Thx,
August 25, 2021 at 12:22 am
Error-Log process
Thanks Scott.
ALTER PROCEDURE [dbo].[Write_Error_Log]
-- Input parameters.
@Type nvarchar(50) = N'ERROR',
@Description nvarchar(MAX) = NULL,
@Procedure nvarchar(50) = NULL,
@Code int = NULL,
-- Output parameters.
@Result nvarchar(MAX) = NULL OUT
AS
BEGIN
-- SET NOCOUNT...
August 23, 2021 at 11:36 pm
Thanks will test the Code out!!
August 22, 2021 at 9:16 pm
ANy more suggestions for the re-write?
August 22, 2021 at 9:15 pm
Thanks Except seems to work for what I need.
Thanks Again!!
August 22, 2021 at 12:16 am
Any other things I can try to figure out why script isn't working?
Thanks.
August 20, 2021 at 11:26 pm
You where correct with the " It's the ol' "data mart"... It's kind of a hybrid table.
Will that effect the Delta output?
THanks.
August 20, 2021 at 11:08 pm
This debug script is returning data as expected.
Thanks.
August 18, 2021 at 12:03 pm
Viewing 15 posts - 391 through 405 (of 686 total)