Viewing 15 posts - 886 through 900 (of 1,536 total)
This would indicate that the sql server service accounts either do not have access to the drive/file, or that the file does not in fact exist.
February 1, 2005 at 7:05 am
From within QA, if you run
exec master..xp_cmdshell 'dir t:\Customised\Database\PFW\Util\$ConData.scr'
What results do you get?
February 1, 2005 at 6:53 am
As a side note, I would turn off AWE, it's not needed with only 4GB of RAM. Leave the /3GB switch in however.
February 1, 2005 at 6:49 am
It's the scr file which is the problem, the ftp process cannot locate it. (Error opening script file t:\Customised\Database\PFW\Util\$ConData.scr. )
Have you tried running the ftp command directly on...
February 1, 2005 at 6:44 am
Create this function in your db and call it in your select statement (ie select dbo.convertunixtime(DATE)), this will convert the unixtime (int) to the real time.
CREATE FUNCTION dbo.convertunixtime (@UNIXTime int) ...
February 1, 2005 at 6:37 am
I would also force a recompile on all of your stored procs, it's possible that the execution does not match what it would have done in sql7.
February 1, 2005 at 6:33 am
I would double check the script which is being called in the ftp process, it's not able to access the file, which, if the permissions are fine, just means that...
February 1, 2005 at 6:17 am
If you run a SELECT * from MASTER..SYSFILES that should give you the location where the files are actually running from.
February 1, 2005 at 6:13 am
How about EXEC sp_msunmarkreplinfo 'bc000026m'
or
EXEC sp_configure 'allow',1
go
reconfigure with override
go
use your_database_name
go
update sysobjects set replinfo = 0 where name = 'bc000026m'
go
EXEC...
January 27, 2005 at 9:27 am
Have you looked at using the dynamic properties task and assigning values to the execute package task from there?
January 27, 2005 at 9:14 am
Have you tried running an sp_removedbreplication just to make sure that the db is replication clean?
January 27, 2005 at 9:13 am
On an ongoing basis, I generally look at the articles and the commentary, take a gander at the script of the day.
If I have time during the day I'll go...
January 26, 2005 at 8:34 am
I've not lived there in a few years, but I'll take a look see and give you an honest opinion.
January 26, 2005 at 8:21 am
If there is another query that is running against the table/s containing those columns then you could end up with a blocking problem, if the data is not highly transactional...
January 26, 2005 at 6:57 am
Viewing 15 posts - 886 through 900 (of 1,536 total)