Viewing 15 posts - 16,396 through 16,410 (of 26,486 total)
And it may suffer from the same problem my original answer suffers, it may not work for a multi-level BOM.
March 25, 2010 at 6:54 am
Not sure how scalable this will be, but I did think of something as I was getting ready to leave for work:
create table #SortTest (
SortOrder int,
...
March 25, 2010 at 6:47 am
Thank you. I won't be able to spend much time on this at the moment, but hopefully someone else will look at the problem, or I will be able...
March 25, 2010 at 6:41 am
nick-604971 (3/25/2010)
There is one other requirement that I had totally forgot to include in the original question.
The order of the parent items should be by SortID as this will always...
March 25, 2010 at 6:23 am
AtlasAdmin (3/24/2010)
I would like to set up database mirroring on a 3-server environment. The idea would be to have 2 DB servers configured as the database principle and 1 DB...
March 24, 2010 at 11:23 pm
Looking for something like this?
create table #TestTable (
MarkPer char(2),
StartDate datetime,
EndDate datetime
);
insert into #TestTable
select 'M1','07/24/2009','10/02/2009' union all
select 'M2','10/20/2009','12/18/2009' union...
March 24, 2010 at 6:17 pm
Looking at it again, that will only work for a simple one level attach. If you start getting into a nested hierarchy like a multi-level BOM, it won't work.
March 24, 2010 at 11:41 am
Les Cardwell (3/24/2010)
Jack Corbett (3/24/2010)
Les Cardwell (3/24/2010)
If you are doing a platform agnostic cert then Celko would work, but for a SQL Server specific cert, then he might not be...
March 24, 2010 at 11:35 am
nick-604971 (3/24/2010)
I have a table of ordered products. This table contains a column ('AttachTo') that can reference the unique ID ('ItemID') of itself. This is used to define a relationship...
March 24, 2010 at 11:28 am
Represents 1753-01-01, the earliest allowed date for a datetime value iirc.
March 24, 2010 at 11:24 am
It is one aspect of security. If you only grant users access to the views and stored procedures, they don't require access to the underlying tables. It is...
March 24, 2010 at 9:32 am
Should only need execute rights on the stored procedure. There may be exceptions to that, but usuallly only if the tables in question on in another database.
March 24, 2010 at 9:23 am
Barry, glad to see you back. Hope you are feeling better, and not just because your on meds.
March 23, 2010 at 8:26 pm
John Rowan (3/23/2010)
March 23, 2010 at 2:22 pm
Viewing 15 posts - 16,396 through 16,410 (of 26,486 total)