Viewing 15 posts - 931 through 945 (of 4,820 total)
Log errors where they occur. Nesting stored procedures is problematic enough without adding additional complications. Every stored procedure is best served when it entirely takes care of itself. That is...
July 11, 2018 at 3:01 pm
July 11, 2018 at 2:57 pm
July 11, 2018 at 1:45 pm
This query has already been answered elsewhere. I know this because I and at least one other person answered that other post. Here was my solution:CREATE TABLE #test (
July 11, 2018 at 1:41 pm
The filters can exist, but if you have the file saved after having actually used the filter to filter out rows, what you get might either be this error or...
July 11, 2018 at 1:38 pm
First order of business is to decide exactly what data conditions constitute a duplicate. Then write a query that identifies the existence or non-existence of those conditions by outputting only...
July 11, 2018 at 1:31 pm
Somewhere in the package, a parameter named Server is expected to have a value that is not null. If you can find that parameter and ensure it has a value...
July 11, 2018 at 1:25 pm
July 11, 2018 at 12:41 pm
July 11, 2018 at 12:10 pm
July 11, 2018 at 12:08 pm
July 11, 2018 at 12:05 pm
I'm linking the dataset1 with dataset2 using lookup function.
Then I want to pass a condition...
July 11, 2018 at 11:53 am
Try this, and change the @Variable value as you see fit...CREATE TABLE #TEST (
Column1 char(1),
Column2 char(2)
);
INSERT INTO #TEST (Column1, Column2)
VALUES ('A', 'B'),
('A', 'C'),
('A',...
July 11, 2018 at 11:40 am
July 11, 2018 at 11:33 am
Viewing 15 posts - 931 through 945 (of 4,820 total)