Viewing 15 posts - 13,786 through 13,800 (of 39,899 total)
SMTP is the protocol for sending mail.
SNMP is a network management protocol.
Database Mail will send across SMTP.
May 22, 2012 at 4:17 pm
You can integrate VCS with SQL Compare (also from Red Gate) to build a set of change scripts from source control.
May 22, 2012 at 2:47 pm
Gianluca Sartori (5/22/2012)
May 22, 2012 at 2:35 pm
I tend to be with Sean. I'd do this:
Table1
ID INT
more columns
Table2
ID INT
FKID INT
where I'd name the FKID something that makes sense.
Or more formally:
Create table Customers (
CustomerID int
, CustomerName...
May 22, 2012 at 11:59 am
Just an FYI, I tend to use semi-colons separately. Just for ease of editing and working.
alter database MyDb set read_only
;
go
select name
from sys.databases
where name not in ('master', 'msdb')
;
That way...
May 22, 2012 at 11:46 am
OK, some more details. Apparently we have everything:
VM Workstation
vCloud director
Lab Manager
SCVMM 2008
ESXi HyperVisors
OpenSack
Physical Machines - we have some of these.
The tools above are used in different areas for...
May 22, 2012 at 10:07 am
All VCS software is similar and works well for what we tend to do with SQL objects. However for the most part it's a manual process for the check-in/check-out.
If...
May 22, 2012 at 8:31 am
Replication.
Replicate out from the Reference db to the other dbs, moving those common objects.
May 21, 2012 at 5:12 pm
ankitb
We mostly use SCVMM at Red Gate, with the rare Hyper-V console management.
May 21, 2012 at 5:07 pm
The rest of the trigger is the same. You process the EVENT data. Not every ALTER DATABASE will include a read only option, so you need to parse the event...
May 21, 2012 at 2:00 pm
I'd think alter database, with a check to see what changed.
May 21, 2012 at 1:39 pm
All SQLServerCentral servers (dev, test, prod cluster) are virtualized. At Red Gate, we use a ton of Hyper-V stuff in the company, including some critical dbs.
I have friends at a...
May 21, 2012 at 1:38 pm
Jeff Moden (5/21/2012)
I've found that continuous releases are usually because there are continuous problems to fix.
LOL, sometimes, but they are also a good way to slip out new features. Facebook,...
May 21, 2012 at 1:29 pm
Eddie Wuerch (5/21/2012)
A while back, I posted a breakdown of SAN snapshot options with SQL Server in response to a different question:http://www.sqlservercentral.com/Forums/Topic795819-357-2.aspx#bm797256
-Eddie
Thanks, missed that.
May 21, 2012 at 1:28 pm
Viewing 15 posts - 13,786 through 13,800 (of 39,899 total)