Viewing 15 posts - 16 through 30 (of 372 total)
I just noticed that my Quote table did not have the foriegn key to the OrderDetail table.
I have the Quote table with a foreign key to the OrderDetail table in...
August 8, 2009 at 3:18 pm
The CartID column is a stored id in a cookie and or the session in my .net application.
The ShopperID column is the logged on membership Guid userID
June 14, 2009 at 10:59 am
CREATE TABLE [dbo].[utbCart](
[ID] [int] IDENTITY(1,1) NOT NULL,
[CartID] [varchar](20) NULL,
[ShopperID] [uniqueidentifier] NULL,
[ProductID] [int] NOT NULL,
[ReferenceName] [varchar](70) NULL,
[Quantity] [tinyint] NOT NULL,
[ModifiedDate] [datetime] NOT NULL,
[UnitCost] [money] NULL,
[ExtendedCost] AS ([UnitCost]*[Quantity]),
[IsPreBuilt] [bit] NOT NULL,
...
June 14, 2009 at 10:57 am
HEY wait a minute,, do not go anywhere π
I am not in a domain just in WORKGROUP
May 4, 2009 at 7:30 pm
HELP DELIMA ALERT !!!
When developing the app I was finally able to use filestream by setting nt authorityetwork in the logins and permissions on the correct database.
NOW,,, I have...
May 4, 2009 at 6:21 pm
John Marsh (5/3/2009)
Hello,Unfortunately I canβt see the .Net code. The SQL looks Okay though.
Regards,
John Marsh
...
May 3, 2009 at 9:52 am
Now that I am thinking about it...
I am finally able to grasp this flow of security and check points with-in the sql server instance. Only took 4 years, but who's...
May 2, 2009 at 1:43 pm
Never mind.
I mapped the login to the desired database.
Under permission on the database I gave NT exec, insert, update permission and it works.
May 2, 2009 at 1:33 pm
I have not give it a shot yet becuase I am finializing an app. Switching gears may dislocate brains cells... π
May 1, 2009 at 9:07 pm
That is exactly what i am experiencing .
Thanks for the notes...
I will have to be carefull with this. Becuase dropping a table to add a column seems a bit much.
May 1, 2009 at 8:57 pm
I found a way to do it.
-- Add a new column to the table
ALTER TABLEdbo.utbStorefrontDoor
ADD OverAllHeight varchar(10) NULL
GO
Just use code and not the designer.
May 1, 2009 at 8:45 pm
I was just thinking about your status yesterday.
I am going to dig into it in a day or so.
Will let you know if I hit any crazy stuff.
Thank you for...
March 11, 2009 at 1:20 pm
Viewing 15 posts - 16 through 30 (of 372 total)