Forum Replies Created

Viewing 15 posts - 91 through 105 (of 135 total)

  • RE: Handling Multiple transaction

    This is the script

    SET ANSI_NULLS ON

    GO

    SET QUOTED_IDENTIFIER ON

    GO

    CREATE TABLE [dbo].[AgencyAccount](

    [AgencyID] [int] NOT NULL,

    [AgencyBalance] [numeric](19, 5) NOT NULL,

    CONSTRAINT [PK_AgencyAccount] PRIMARY KEY CLUSTERED

    (

    [AgencyID] ASC

    )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE ...

  • RE: Backup and Restore permission to user

    Thanks for the reply

    Can u explain how to give this permissions(windows) to sql serservice account.

    The SQL server and sql server agent is run under Built in account(Local system)

  • RE: Backup and Restore permission to user

    GilaMonster (4/9/2012)


    Otherwise the database role for backups is db_backupoperator.It grants BACKUP DATABASE, BACKUP LOG, CHECKPOINT in that database.

    i tried this too but same error

    Cannot access the specified path or file...

  • RE: Backup and Restore permission to user

    Lowell (4/9/2012)


    a person with db_owner permissions has the ability to backup, restore, or even drop their own database, i believe.

    that's very easy to test.

    i had already given the db_owner permission...

  • RE: Reading data from two CSV files

    Thanks Mark and jeff

    Jeff great article written by you...trying to understand the tally table generation 🙂

  • RE: Hotel availability search

    Didn't seen your post, thanks once again

    i will do some testing and let u know

  • RE: Hotel availability search

    I got this finally now i had to do some testing based on different data...

    DECLARE @Checkin date = '2012-01-01'

    DECLARE @Checkout date = '2012-01-04'

    DECLARE @Checkoutin date

    SET @Checkoutin = DATEADD(DAY,1,@Checkout)

    --SELECT @Checkoutin

    --SELECT @Checkout

    DECLARE...

  • RE: Hotel availability search

    thanks dwain for the help.

    Actually i got this result..didn't update the script with rate...got stuck with this query for almost 2 days.

    As you see i use calendar table and tally...

  • RE: Insert into table from xml

    thank you very much...exactly this one i wanted.

    One more question

    Isn't cross apply is slow...travesing so many tags

  • RE: One time installation of Application with SQL Server

    thanks for the reply

    There will be two versions of application one for server and other as client, both needs sql server dataabase, and what type of licencing should I consider....

  • RE: insert value from xml to the table

    thanks srikant

    can u explain why you r using '.' instead of tags

  • RE: Database Designing issue

    Thanks to all

    I am following the generalization concept, it will be easy to implement and may be in future there will be new product, which can be easily implemented...

  • RE: Database Designing issue

    Hi Gail

    Thanks for the reply

    I decided to go for seperate tables, as it would be easy to maintain.

    As i mentioned earlier each search request will go to their corresponding table...

  • RE: Database Designing issue

    Hi

    This is B2B and B2C travel application with end users will be travel agents and customers.

    Yesterday I read the Generalization (SuperType/SubType)concept in DB designing, According to this concept...

  • RE: Database Designing issue

    dev

    I will keep the education in a seperate table add the referece to the profile table

    Koen Verbeeck

    For sparse it has disadvantage it will take additional 4 bytes + column...

Viewing 15 posts - 91 through 105 (of 135 total)