Viewing 11 posts - 1 through 11 (of 11 total)
Right,
You will have to be a bit clearer about what you want to do, do you want to delete orphan records as in your original post or do you want...
May 9, 2013 at 7:51 am
Sorry,
I just saw in my haste I never tested the code I posted, there were a few errors as I was making use of a different table name than the...
May 9, 2013 at 6:56 am
Hi KS-321165,
This will tell you which children's parents do not exist
SELECT
*
FROM Table1 t1
LEFT JOIN tt AS Table1 ON t1.ParentUnitID = t2.UnitID
This will give you the records where a...
May 9, 2013 at 5:24 am
Hi Azdeji,
To get the results in the format you want with each level being in a different column, your best bet would be to join the table multiple times, but...
May 9, 2013 at 5:08 am
Ya, see, if you already have a data set in your original schema, it makes it a bit more difficult, as you will have to migrate your data to the...
May 9, 2013 at 4:06 am
Hi WWDMark,
That seems to be quite a common problem from what I've seen in busines, Excel is just so convenient for most users since is is more WYSIWYG than most...
May 7, 2013 at 8:18 am
Hi Azedji,
The structure below I think has a bit more flexibility, you will see that you can add a role at any time, there may be better ways of doing...
May 7, 2013 at 6:44 am
Hi Azdeji,
I am glad it worked,
mmm, to do that you may have to change your schema, you will be able to make it work as is, but you are going...
May 6, 2013 at 11:43 pm
Thanks for clearing that up,
I must say, I have never lost a db by stopping and starting the service (which I would not try on a prod env, but on...
May 3, 2013 at 8:25 am
Hi,
I am pretty sure if you stop and start the service, it stops the rollback operation, after that, you can drop the table removing the keep history button, since you...
May 3, 2013 at 5:33 am
Hi azdeji,
I understand what you are trying to achieve, but you won't be able to do it with an update, since you need to create rows for each possibility, you...
May 3, 2013 at 4:50 am
Viewing 11 posts - 1 through 11 (of 11 total)