Viewing 15 posts - 1 through 15 (of 16 total)
As well as checkout the services started or not on both the servers.
Make them automatic.
Remote Procedure Call (RPC)
Remote Procedure Call (RPC) Locator
Remote Registry
Secondary Logon
Indexing Service(Dependencies RPC)
Type services.msc in run
October 27, 2010 at 10:04 pm
Checkout parameters set in sp_configure for these below
remote access
remote login timeout (s)
remote proc trans
remote query timeout (s)
network packet size (B)
October 27, 2010 at 9:54 pm
Thanks Gail.
October 27, 2010 at 4:19 am
Thanks for reply Steveb.
October 27, 2010 at 3:52 am
As the error above, I believe Enterprise Manager uses the msdb.dbo.sp_enum_dtspackages stored procedure to list the packages, so by examining this procedure you should be able to see what is...
October 27, 2010 at 2:59 am
I have this query to find out created table in last N days.
Select name, id, crdate
From sysobjects
Where type ='U'
and DateDiff(D,refdate,getdate()) < 7;
But it will get last created, I want last...
October 27, 2010 at 2:46 am
Thanks Gail,
I will try to work on that & will see the performance on Monday.
October 9, 2010 at 5:08 am
All the sql jobs are set on the servers by our previous DBA.
I read the article.
Its really interesting.
Ok.
I will change schedule of shrinking to weekly rather than taking daily.
Or i...
October 9, 2010 at 2:57 am
Today also i got an error for one database while shrinking.
Nothing is logged into error log.
I saw this error in the maintainance plan history.
-------------------------------------------------------------------
[Microsoft SQL-DMO (ODBC SQLState: HY000)] Error 9001:...
October 8, 2010 at 10:17 pm
Those jobs are set on server, runs daily.
Database state is online.
All the log files are there.
I got this error in early morning today for 2databases.
Yesterday i got it only for...
October 8, 2010 at 3:04 am
I want to move data/log files from C drive to E drive.
Is there any other option in SQL Server 2000 except of detach/atach
September 25, 2010 at 3:19 am
Thanks for reply.
Is there any way to do that except of doing detach/atach while copying from windows.
September 25, 2010 at 3:17 am
Hi all,
I am using sql server 2000
I am trying to use alter database option to move datafiles.
But it showed me error below-
Server: Msg 5037, Level 16, State 1, Line 1
MODIFY...
September 24, 2010 at 10:29 pm
This is query which worked for me
BULK INSERT School_Lester.dbo.dbo_valCity
FROM 'D:\valCitynew.txt'
WITH
(
BATCHSIZE = 1000 ,
DATAFILETYPE = 'char' ,
FIELDTERMINATOR = ',' ,
ROWTERMINATOR = '',
MAXERRORS = 50 ,
TABLOCK ...
September 23, 2010 at 9:53 pm
Hey Thanks,
BCP utility didnt work for me,
But i did it from Bulk insert & its worked for me.
Yesterday i started & within 5mins its completed while it was taking so...
September 23, 2010 at 9:50 pm
Viewing 15 posts - 1 through 15 (of 16 total)