Viewing 15 posts - 5,851 through 5,865 (of 7,429 total)
Never mind I figured it out.
The key is in the Restore Object ReadFileList method.
Thsi Ex. Worked for me, based on Andy Warrens code except added ReadFileList
Hope it helps.
--------------------------Code
Private Sub Form_Load()
Call...
May 16, 2002 at 11:53 am
The problem you are running into is you must include the logical file names of the original files and the path of the new files to get restore to work.
Ex....
May 16, 2002 at 11:39 am
Looks like an issue with network latency, what connections type are your using and have you tried PINGing the server from the box with the issue. Also make sure is...
May 16, 2002 at 9:32 am
I agree, you may also want to use Profiler to tarce both boxes to see if anything unusual is occurring.
"Don't roll your eyes at me. I will tape them in...
May 16, 2002 at 7:39 am
What happens when you do this from cmp prompt? How about QA?
"Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)
May 16, 2002 at 6:18 am
As you state this is merge replication and it could potentially be a timeout issue. I saw a statement in another thread about the rowguid column and that you should...
May 16, 2002 at 5:57 am
I have to agree with Andy, since this is set at the session level it makes it harder to see, and there is no direct variable that will give this...
May 16, 2002 at 5:53 am
I would think if you installed SQL 2000 with more than one processor that you have license for that and since AS is part of SQL 2000 you have the...
May 16, 2002 at 5:24 am
Likes are naturally slower anyway but do perform better if you can avoid doing LIKE '%something%' and instead doing LIKE 'something%'. The only faster thing but adds a lot of...
May 16, 2002 at 5:17 am
Check out http://support.microsoft.com/default.aspx?scid=kb;en-us;Q75191 this should still apply.
"Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)
May 16, 2002 at 5:06 am
I have never seen names quoted in cmd line like this
SET @TheCommand = 'dtsrun /S "W2KS-SQL" /E /N "ImportInfoHos"'
Try
SET @TheCommand = 'dtsrun /S W2KS-SQL /E /N ImportInfoHos'
This has always worked...
May 16, 2002 at 5:01 am
I am not sure I follow are you saying that your trigger fires and does not handle all the updates in a multirow UPDATE or does, can you explain better?...
May 16, 2002 at 4:55 am
When checks for a true statement. Case is more like a SELECT statement in VB. This will work for you.
CASE
WHEN @mv_int > 7 THEN 'Yes'
ELSE 'No'
END
"Don't roll your eyes at...
May 15, 2002 at 8:10 pm
From SQL BOL
quote:
timestampThe SQL Server timestamp data type has nothing to do with times or dates. SQL Server timestamps are binary...
May 15, 2002 at 7:26 pm
Right you want dbo to own (preferably) all objects in the database so that the ownership chain is easy to work with and your not changing between owner schemas (which...
May 15, 2002 at 7:23 pm
Viewing 15 posts - 5,851 through 5,865 (of 7,429 total)