Viewing 15 posts - 121 through 135 (of 181 total)
SQL Server has it own Performance moniter to collect the metrics
November 11, 2002 at 1:02 pm
I am not sure if this would help you.In SQL Server 7.0 when I used to run the stored procedure/query in the Query analyser by selecting the results in text...
November 11, 2002 at 12:55 pm
Make sure that the SQL server agent service is running with a domain account with proper read write permissions on the remote server.
Hope this help.
November 11, 2002 at 12:39 pm
Is it working fine if you are executing the stored procedure form Query analyser
November 11, 2002 at 12:23 pm
xp_msver will give the latest version and full version of SQL Server and version of Operating system.
I don't think we can get all the sp's installed list with any of...
November 11, 2002 at 12:13 pm
I think @@rowcount should give you the number of records inserted.
begin tran
select * into authors2 from authors
select @@rowcount
commit tran
November 11, 2002 at 12:06 pm
Not sure if it works but try this.
CREATE PROCEDURE VO_ImportRates @file varchar(100) , @count varchar(20) OUTPUT, @rrcount varchar(20) OUTPUT AS
SET NOCOUNT ON
BEGIN
EXEC dbo.VO_Import 'vo..importrates','D:\BillingProject\ImportRates\',@file
END
BEGIN
INSERT INTO dbo.ratehistory (Country, Planname, Rate, EffectiveDate,...
November 11, 2002 at 11:47 am
\\servername\folder, make sure it has proper permissions.
November 11, 2002 at 11:39 am
Can you give more details about the kind server/servers which you are using.
November 11, 2002 at 11:16 am
There is an article by Steve,I think it will explan what you are looking for.
http://www.sqlservercentral.com/columnists/sjones/moveyourmaster.asp
November 11, 2002 at 11:12 am
I Don't think so,it will have the objects of the Master database only.For all the Individual databases it will be in sysobjects under that database.
November 11, 2002 at 11:07 am
Yo cannot restore the SQL Server 2000 Backup to SQL Server 7.But, you can do it the other way round.
November 11, 2002 at 7:50 am
Excellent Steve,This process is really simple.Next time when I need to move the master database I am going to take this approch.
November 10, 2002 at 11:36 am
I think it should be 8k since in Oracle it writes to the archivelogs page size(between 2k and 64k) you specify.
November 8, 2002 at 3:54 pm
Viewing 15 posts - 121 through 135 (of 181 total)