Viewing 15 posts - 1,021 through 1,035 (of 6,486 total)
Mark Fitzgerald-331224 (4/17/2012)
Answering you questions
Is it:
- node(s) which have the longest lineage -> in this case...
April 17, 2012 at 3:05 pm
Thanks Mark, and I did get that part. It's just that depending how you define top-most parent, you might not need recursion at all . Having to put...
April 17, 2012 at 7:53 am
SQLCrazyCertified (4/16/2012)
Lynn Pettis (4/16/2012)
SQLCrazyCertified (4/16/2012)
Mike John (4/14/2012)
April 16, 2012 at 2:06 pm
Assuming you can get the ID's assigned correctly, here's the CTE with no recursion:
with startCTE as (
select ROW_NUMBER() over (order by ID)...
April 16, 2012 at 11:07 am
Learner1 (4/16/2012)
@cold coffee...Thanks a lot ...it works ............
Just be careful with this. You will have to ensure that SSIS actually assigns the ID's in the correct order (if they're...
April 16, 2012 at 10:40 am
Are we saying "the" top level parent is the one with the longest lineage? I wouldn't have defined it that way (to me, top level parents = records where...
April 16, 2012 at 10:22 am
Rich Yarger (4/12/2012)
April 12, 2012 at 10:51 am
If you look at the tables defined within the dataset, the table structure matching tblprod has no column marked as the primary key or the unique key. This doesn't...
April 12, 2012 at 9:33 am
You may still have a shot: JDBC and ODBC both offer kerberos authentication options to use in connection strings, as does Informatica natively (for external service calls). What I...
April 11, 2012 at 1:34 pm
Note: while cadavre's code will generate a sequence number within the query run, it's not a deterministic sequence number. As a result, rows might get different sequence numbers...
April 10, 2012 at 10:53 am
With no specifics, it's going to be awfully hard to give you anything meaningful. The only insight I could give you is to identify what part of the loading...
April 10, 2012 at 9:32 am
How is excel helping you at all in this process? You'd have a lot better functionality on this if you were to keep this within Access.
As far as I...
April 10, 2012 at 9:22 am
sqldba_newbie (4/5/2012)
Matt Miller (#4) (4/5/2012)
integrated security=sspi
means "use the current windows credentials over Kerberos", so then passing the...
April 5, 2012 at 2:53 pm
Depending on which type of connection you're setting up, you've got conflicting instructions.
integrated security=sspi
means "use the current windows credentials over Kerberos", so then passing the user ID and password...
April 5, 2012 at 2:35 pm
I would actually go one further - why not use the deploy option from within Visual Studio? You don't have to build out the scripts at all. Build...
April 5, 2012 at 9:24 am
Viewing 15 posts - 1,021 through 1,035 (of 6,486 total)