Viewing 15 posts - 91 through 105 (of 135 total)
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 ...
April 30, 2012 at 9:25 am
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)
April 9, 2012 at 10:37 pm
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...
April 9, 2012 at 6:28 am
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...
April 9, 2012 at 6:23 am
Thanks Mark and jeff
Jeff great article written by you...trying to understand the tally table generation 🙂
March 13, 2012 at 5:24 am
Didn't seen your post, thanks once again
i will do some testing and let u know
March 1, 2012 at 7:18 am
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...
March 1, 2012 at 7:05 am
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...
February 29, 2012 at 10:49 pm
thank you very much...exactly this one i wanted.
One more question
Isn't cross apply is slow...travesing so many tags
February 23, 2012 at 5:42 am
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....
February 16, 2012 at 11:47 pm
thanks srikant
can u explain why you r using '.' instead of tags
February 7, 2012 at 6:18 am
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...
December 29, 2011 at 2:42 am
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...
December 23, 2011 at 2:39 am
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...
December 22, 2011 at 9:20 pm
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...
December 22, 2011 at 5:13 am
Viewing 15 posts - 91 through 105 (of 135 total)