Viewing 15 posts - 2,326 through 2,340 (of 5,394 total)
No downtime, but you could experience a performance degradation and blocking while the command runs.
November 22, 2011 at 9:49 am
Register all the servers in SSMS, right click the server group and select "New query".
Run sp_password.
However, I wouldn't set the same password on all the servers, as Lowell pointed out.
November 21, 2011 at 9:38 am
Jack Corbett (11/21/2011)
November 21, 2011 at 9:07 am
Koen Verbeeck (11/21/2011)
Gianluca Sartori (11/21/2011)
50 days without rain???In Belgium????
You must be joking. :hehe:
I kid you not.
I'm even surprised myself 🙂
We even had an Indian Summer that was better than the...
November 21, 2011 at 4:31 am
50 days without rain???
In Belgium????
You must be joking. :hehe:
November 21, 2011 at 3:06 am
-2 °C This morning here.
And Italy is supposed to be one of the warmer countries in Europe...
November 21, 2011 at 2:33 am
You can set up a linked server to your Exchange using this:
http://msdn.microsoft.com/en-us/library/ms191461.aspx
Hope this helps
Gianluca
November 21, 2011 at 2:25 am
SELECT SomeColumn
FROM SomeTable
WHERE SomeDateColumn BETWEEN '20110901' AND '20111031'
November 21, 2011 at 2:11 am
You'll need something that parses the request e-mail, queries the database and replies with something like Database Mail.
I'm not aware of any tool that does this out of the box.
November 21, 2011 at 1:42 am
Duplicate post.
Replies here please: http://www.sqlservercentral.com/Forums/FindPost1209021.aspx
November 21, 2011 at 1:40 am
November 21, 2011 at 1:38 am
Koen Verbeeck (11/20/2011)
WayneS (11/18/2011)
:w00t::w00t::w00t:Just passed 70-451. Now I have all exam pre-req's for 88-970 done... just not sure I'm ready for that one yet though.
Congrats!
And congrats from me too!
November 21, 2011 at 1:34 am
Almost forgotten: wrap that code into a transaction!!!!
November 18, 2011 at 7:04 am
Drop the column and re-create it.
Here's an example:
CREATE TABLE #test (
id int identity(1,1) PRIMARY KEY,
name nvarchar(50)
);
ALTER TABLE #test ADD new_id int NOT NULL; -- Remember NOT NULL, otherwise you...
November 18, 2011 at 7:03 am
Grant Fritchey (11/18/2011)
Gianluca Sartori (11/18/2011)
The technique described there uses DBCC commands, but it...
November 18, 2011 at 6:41 am
Viewing 15 posts - 2,326 through 2,340 (of 5,394 total)