Forum Replies Created

Viewing 15 posts - 16 through 30 (of 372 total)

  • RE: Transaction Advice

    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...

  • RE: How to chage IDENTITY Column seed

    Thank you

  • RE: Sum

    MONEY sql datatype

    decimal .net c# datatype

  • RE: Simple select issue

    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

  • RE: Simple select issue

    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,

    ...

  • RE: NT AUTHORITY\NETWORK SERVICE database role

    HEY wait a minute,, do not go anywhere πŸ˜‰

    I am not in a domain just in WORKGROUP

  • RE: NT AUTHORITY\NETWORK SERVICE database role

    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...

  • RE: Money datatype and decimal in .net c#

    John Marsh (5/3/2009)


    Hello,

    Unfortunately I can’t see the .Net code. The SQL looks Okay though.

    Regards,

    John Marsh

    ...

  • RE: NT AUTHORITY\NETWORK SERVICE database role

    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...

  • RE: NT AUTHORITY\NETWORK SERVICE database role

    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.

  • RE: Add column error

    I have not give it a shot yet becuase I am finializing an app. Switching gears may dislocate brains cells... πŸ˜‰

  • RE: Add column error

    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.

  • RE: Add column error

    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.

  • RE: Filestream

    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...

  • RE: Filestream

    Thanks.

    I will look forward to your response.

Viewing 15 posts - 16 through 30 (of 372 total)