Viewing 15 posts - 76 through 90 (of 219 total)
You can configure the SQLmail in a clustered environment, but its not stable. You cannot guarantee the availability. MS says SQL Mail is not fully Functional on a Cluster due...
July 22, 2003 at 2:14 pm
NO you can't restore just the data from a backup file. It's good practice to shrink the log file before you take the backup
July 22, 2003 at 10:25 am
DBArtisan, Spot Light and Patrol
July 22, 2003 at 10:19 am
Check the ODBC Connectivity to the SQL Server from the desktop you are connecting to
July 22, 2003 at 9:07 am
We have around 50+ SQL Servers and equal number of Oracle. Only two DBAs in our group knows both..I am still in the learning stage
July 18, 2003 at 11:12 am
-- Clustering is too expensive and you must need either Advance server or Data center unless you use some third party tools to setup the cluster ...
July 18, 2003 at 10:19 am
I prefer to do UPDATE STATS and recompile the stored procs with sp_recompile after the index rebuild
July 18, 2003 at 9:46 am
July 18, 2003 at 8:58 am
I agree with Allen
Also most of the Tempdb issues like this were fixed in SP3, but strange you already have SP3
http://support.microsoft.com/default.aspx?scid=kb;en-us;278363
http://support.microsoft.com/default.aspx?scid=kb;en-us;278366
July 18, 2003 at 8:55 am
CREATE TABLE #Errors (vchMessage varchar(8000), ID int)
INSERT #Errors EXEC xp_readerrorlog
SELECT vchMessage FROM #Errors where ID = 1
Drop table #Errors
July 17, 2003 at 2:40 pm
What do you mean by the new server doesn’t recognize? Is the database on line in the EM after restoring on the new server? Or the restore it self is...
July 17, 2003 at 12:37 pm
It doesn’t mater what service pack is on it. Is both servers are in the same domain? What’s your OS? Any clustering between the server?
July 17, 2003 at 10:38 am
Missing a point, When you double click on the application icon on the desktop, it should open the application and connect to the server with out entering the user/pwd, meaning...
July 17, 2003 at 9:17 am
Viewing 15 posts - 76 through 90 (of 219 total)