Viewing 15 posts - 76 through 90 (of 99 total)
Select your Publication Right Click Go to Publication Properties -> Agent Security you will the find the user credential to be used for SnapShot Agent and Log Agent
May 23, 2013 at 1:02 am
You cannot call insert like that, = operator works while you are updating any row or table.
May 23, 2013 at 12:54 am
Another option other then suggested above would be, Initilizing the subscriber from backup, this saves a lot of time of applying snapshot to subscriber,
The intial snapshot apply would also...
May 23, 2013 at 12:46 am
Bhaskar.Shetty (5/23/2013)
May 23, 2013 at 12:42 am
I mean when you change the datatype of num1 or num2 from varchar to int, it will not parse the value 858.621 because the int will not hold decimal places....
May 23, 2013 at 12:29 am
What is the problem I see here is your statement to check the Departuredate is wrong, from the below query it will return the rows where departuredate is less the...
May 23, 2013 at 12:21 am
First Query
declare @LeaveDate datetime
SET @LeaveDate = '04/19/2013'
select * from leavecard where @LeaveDate between StartDate and EnDate
Second Query
declare @LeaveDate datetime
declare @Name varchar(50)
SET @LeaveDate = '04/19/2013'
set...
May 23, 2013 at 12:12 am
The 858.621 value is not an int value should be cast with decimal or numeric.
May 23, 2013 at 12:03 am
Generate the data result in that manner, probably with two different query's and column list.
May 22, 2013 at 9:01 am
Check the setting of Copy INSERT, UPDATE, DELETE stored procedures for this article should be set to true.
May 22, 2013 at 8:57 am
Provide User info while connecting using -E or -U switch,
-E : Is Trusted connection
-U : UserName to connect and later it will ask for pass to connect
May 22, 2013 at 8:36 am
That's something to do with your authentication server on which you are a user, and you might be selecting windows authentication mode while connecting to sql server, What happens when...
May 22, 2013 at 8:30 am
GilaMonster (5/22/2013)
Bhaskar.Shetty (5/22/2013)
but adding indexes for each and every column mince adding overheads on index maintanance also.
You wouldn't want to do that and it would be entirely useless to do....
May 22, 2013 at 8:23 am
GilaMonster (5/22/2013)
shettybhas (5/22/2013)
If the EXEC are calling inside a Stored Procedure then this may be because of Paramete r Sniffing, alter the stored procedure with 'WITH RECOMPILE' and try once.
Parameter...
May 22, 2013 at 8:13 am
GilaMonster (5/22/2013)
May 22, 2013 at 8:05 am
Viewing 15 posts - 76 through 90 (of 99 total)