Viewing 15 posts - 631 through 645 (of 1,166 total)
What edition of sql server you are using?
Check in SQL SERVER configuration manager..
If it is express SQL Agent will not be available.
January 10, 2007 at 11:18 am
Microsoft SQL Server 2000 Index Defragmentation Best Practices
http://www.microsoft.com/technet/prodtechnol/sql/2000/maintain/ss2kidbp.mspx
January 9, 2007 at 11:49 pm
From BOL:
Local partitioned views are included in SQL Server 2005 for backward compatibility purposes only, and are in the process of being deprecated. The preferred method for partitioning data locally...
January 9, 2007 at 11:43 pm
I think it is related to network protocol...
Check the network protocol configuration...
You can alias sql instance in client network utililty..
January 9, 2007 at 11:32 pm
If you stop the sql service in SCM, I don't think you can connect without starting sql in SSMS...
net stop sqlserveragent
net stop mssqlserver
net start mssqlserver
net start sqlserveragent
http://www.databasejournal.com/features/mssql/article.php/3644906
January 9, 2007 at 11:29 pm
I don't think it is going to work if grant exec permission to sp_helptext because in SQL 2005 security is locked down completely...
Just guess: One option might be create a...
January 9, 2007 at 11:15 pm
Wen you are creating index use ON <Filegroup> option otherwise index will be created on default filegroup....
CREATE INDEX IX_INDEX ON TABLENAME(COLUMN_NAME) ON FILEGROUP_NAME
January 9, 2007 at 10:30 pm
Close the command window to stop the sql...
Check the startup parameters in configuration manager...
Disable VIA protocol if it is enabled...
Start the sql from configuration manager and see what you get..
January 9, 2007 at 1:02 pm
I did not understand your question completely but....
If you want to map the login to run the xp_cmdshell on the remote server you can map it to 'sa'... I don't...
January 9, 2007 at 12:53 pm
Datediff function provides the difference between the two dates so what is the relation with DST?
As mentioned before sql time is system time there no other serperate clock for sql.
January 9, 2007 at 12:44 pm
Try changing your PORT number from 1433 to 1434/1435...in configuration manager..
January 9, 2007 at 12:39 pm
I don't have servers running 2000 cmpt mode...
The following article will help you and BOL http://msdn2.microsoft.com/en-us/library/ms178653.aspx
http://www.microsoft.com/technet/prodtechnol/sql/2005/sqlupgrd.mspx
January 9, 2007 at 12:37 pm
Based on the following thread disabling VIA protocol resolved...
http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=108800&SiteID=1
Did you check your startup parameter in configuration manager?
January 9, 2007 at 12:28 pm
There are some third party comparision tools out there you can use them if it is one time process by downloading trial version...
Google "Shcema comparision tools for sql server" or...
January 9, 2007 at 12:12 pm
Use SQL server conffiguration Manager or you can create a batch file using NETSTOP/NETSTART commands...
January 9, 2007 at 11:45 am
Viewing 15 posts - 631 through 645 (of 1,166 total)