Viewing 15 posts - 1 through 15 (of 16 total)
Thanks Joie,
I found the part of the problem was that I was logged in as myself and not as Administrator. Once I logged in as administrator, the options became...
May 26, 2015 at 7:40 am
Thanks Alan,
I the primary DBA and myself have checked the CPU usage and memory and both appear to be good.
I just tried restarting the SSIS Service and it had no...
May 21, 2015 at 3:19 pm
Thanks Kevin,
We are doing the majority of the processing in temp tables but in the end, there are a lot of deletes and then writes back to five different summary...
February 26, 2015 at 12:55 pm
Jeff Moden (2/12/2015)Just to be clear on the "new table" thing. The existing table could easily be modified to include Nested Sets to do all the magical things that...
February 12, 2015 at 9:31 am
Jeff Moden (2/12/2015)
February 12, 2015 at 7:58 am
CELKO (2/11/2015)
February 11, 2015 at 2:13 pm
Jeff Moden (2/11/2015)
Not to worry. You won't have that problem when we're done. I just can't get to it during normal working hours. Have to do it...
February 11, 2015 at 1:15 pm
By the way, I created a basic, limited workaround.
I created a table which takes the table and self-joins it nine times giving me up-to 10 generations of duplicates in a...
February 11, 2015 at 9:20 am
Jeff Moden (2/11/2015)
So, just to clarify... if we did a search for all rows in this table where the "parent" ID was NOT contained in the...
February 11, 2015 at 9:10 am
Here is the create table:
CREATE TABLE [dbo].[Dimduplicates](
[duplicates_key] [int] IDENTITY(1,1) NOT NULL,
[dupeof_key] [int] NOT NULL,
[dupe_key] [int] NOT NULL,
[start_ts] [datetime] NOT NULL,
[end_ts] [datetime] NULL,
CONSTRAINT [PK_Dimduplicates_key] PRIMARY KEY CLUSTERED
(
[duplicates_key] ASC
)WITH (PAD_INDEX...
February 11, 2015 at 8:55 am
Jeff Moden (2/10/2015)
Is it an absolutely true parent/child relationship where no child can be it's own parent and that each child has one and only one parent?
Yes. No child...
February 11, 2015 at 8:16 am
Thanks Dwain,
The data is structure such that children point to their parent but parents do not point to children.
Bug 1 has no idea it has any children but...
February 10, 2015 at 7:38 am
Thanks Alan.
Just opened and it looks quite in-depth. Will make for some good reading. 🙂
February 9, 2015 at 3:11 pm
amar_kaur16 (2/9/2015)
The only problem is there can or cannot be a record for an applicant in the review table and I want to get all...
February 9, 2015 at 2:56 pm
Interesting solution:
Changing the order of processing solves the problem.
Original:
1. Retrieve all data to be inserted to @table
2. Delete from regular table based on date range in @table
3. Insert @table data...
January 23, 2015 at 9:50 am
Viewing 15 posts - 1 through 15 (of 16 total)