Viewing 15 posts - 1 through 15 (of 462 total)
The data drive is shared but is dedicated to the instance. The data drive is not shared between instances.
When a cluster fails over, you will witness a brief outage....
June 1, 2005 at 9:47 am
No hard feelings for Oracle guys. But I have seen this when people start managing SQL Server like Oracle. They need to understand that Life is easy with SQL Server.
May 25, 2005 at 2:01 pm
If it is a default instance, youcan run sp_addserver 'servername' and register the server. for named instance, you will have to run sp_addserver 'servername\instance_name'
May 25, 2005 at 1:56 pm
The reason microsoft prefers making changes in the Enterprise manager is that it does update the services on both nodes. If you do it through Services snap-in, you will have...
May 25, 2005 at 1:55 pm
SQL server SP4 has more fixes and does not introduce any new features. With this said, i think you should be safe to go ahead and install SP4 but you...
May 25, 2005 at 1:52 pm
Detaching a database is almost equivalent to dropping the database with the exception of the data/log files not getting deleted. the entry in sysdatabases for the database name gets lost...
May 25, 2005 at 1:50 pm
You might still want to check the option for automatically growth. Say if you are updating a table with 1 million rows, as steve mentioned, the transaction does get written to...
May 18, 2005 at 2:23 pm
You can recycle the logs periodically by using sp_cycle_errorlog. But as Steve said, there is no way to restrict them to a certain size.
May 17, 2005 at 12:11 pm
WHERE
DATEADD(ss,-14400,PO_DATE) >= '01/01/2005'
AND
DATEADD(ss,-14400,PO_DATE) <= '01/02/2005'
GROUP BY
With what i understand, the conditions above won't filter any dates. You can just get rid of the conditions above.
May 17, 2005 at 7:40 am
Is this what you are looking for ?
select suser_sname(a.sid), 'Type '= case when a.isntgroup = 1 THEN 'Win Group'
else 'User'
END
, c.name from sysusers a join sysmembers b on a.uid...
May 16, 2005 at 9:39 am
You won't see an entry of 127.0.0.1 :1433 on clusters. I think this is a loopback entry and wont' be there on clusters. some thoughts.
1) Can you try opening a...
May 13, 2005 at 8:09 am
Below are some articles.
http://www.databasejournal.com/features/mssql/article.php/10894_2244381_3
FYI- I did like the article from Andrew. I would say that i do remember one scenario where our SAN team gave up(as usual) and...
May 13, 2005 at 7:53 am
To move the log to a different location, detach the database, copy the file to your destination and attach the file stating the new location.
May 12, 2005 at 2:39 pm
Below are a couple of links
http://vyaskn.tripod.com/moving_sql_server.htm
http://www.databasejournal.com/features/mssql/article.php/1479841
May 12, 2005 at 2:37 pm
You can write a small script by using the cluster command to find out on what resource your cluster is running and schedule the same.
e.g.
cluster /cluster:server_name group "disk group 1"...
May 12, 2005 at 9:48 am
Viewing 15 posts - 1 through 15 (of 462 total)