Viewing 15 posts - 526 through 540 (of 1,065 total)
I had a similar issue a few years ago when installing SP3 for SQL Server 2000. The installation failed on the passive node on a few occasions, saying it was...
August 11, 2009 at 3:50 am
You are trying to connect to the server using Windows Authentication (-T switch). I suspect the Windows account being used to run the BCP command doesn't have the necessary permissions...
August 11, 2009 at 1:29 am
Glad you got it sorted... hope that was the only file that went missing.:ermm:
August 10, 2009 at 4:23 am
Paul White (8/8/2009)
GilaMonster (8/7/2009)
Anyone really know their way around replication?http://www.sqlservercentral.com/Forums/Topic766992-146-1.aspx
Could the OP have made any less effort in that thread?
Steady on Paul... this is getting dangerously close to what this...
August 8, 2009 at 2:41 am
Thanks guys 🙂
I hadn't seen PortableApps before... that looks very interesting
August 7, 2009 at 3:00 pm
Tools... Options... Environment... General... Environment Layout
August 7, 2009 at 7:29 am
I know I'm getting more cynical as I get older, but...
Every hour you work for "free", is money the company doesn't have to spend. Where does that money go......
August 7, 2009 at 7:24 am
In that case, SQL Server does seem like a good choice for storing your data, but you are going to have to do a fair amount of work, for starters...
Analyse...
August 7, 2009 at 6:43 am
This should give you the rough idea:-
declare @date datetime
declare @dw int
declare @time datetime
set @date = '7 aug 2009 21:59:59' --whatever date you want
SET @time = @date - dateadd(dd, datediff(dd,0, @date),0)
SET...
August 7, 2009 at 3:55 am
What happens if you try to run the process from a command prompt?
Run C:\Program Files\Microsoft SQL Server\90\COM\replmerg.exe (assuming SQL Server is installed in the default folders) with the parameters you...
August 7, 2009 at 3:21 am
You need to supply a lot more information before anyone will be able to advise you. For starters...
What is this data?
Where is this data coming from?
What format is it in?
What...
August 7, 2009 at 2:45 am
Can you post the command that is being run for the step that failed, please?
If there are any directory paths in that step, verify that those paths exist, and that...
August 7, 2009 at 2:25 am
FILLFACTOR specifies how much the leaf level of the indexes should be filled. PAD INDEX just specifies that this should be done on the intermediate levels of the indexs as...
August 7, 2009 at 2:10 am
I have tried the BCP command that SQL Replication Monitor gives me and no luck: syntax error. This is incredible
Can you post the BCP command and the error message for...
August 7, 2009 at 1:47 am
SET QUOTED_IDENTIFIER ON
This line says treat everything in double quotes (") as an identifier, not a literal.
Change them to single quotes (')
August 6, 2009 at 8:27 am
Viewing 15 posts - 526 through 540 (of 1,065 total)