Viewing 15 posts - 196 through 210 (of 440 total)
A little tip: I create a file copy of the master database. If the master database should be so corrupt that SQL Server cannot start, I use this file copy...
December 22, 2011 at 10:06 am
Perry Whittle (12/21/2011)
It sounds very much like your requirements could be met by using IPSec.
Good point Perry, IPSec is an option which often is forgotten.
December 22, 2011 at 1:22 am
Nope. However, if you have software which remotely can invoke processes on a Windows server, you can use that software to run dtexec, which is used to run SSIS Packages.
December 22, 2011 at 1:14 am
I've used it several times. It has either been low-level data conversion (UTF8 to UTF16 and back, binary(8) to float) or working with bit mapped values, like @val...
December 21, 2011 at 3:30 pm
Honstely, the better way of doing this is using a firewall 🙂
December 21, 2011 at 7:01 am
December 21, 2011 at 6:22 am
I do definitely not want to be petty, I do however think that the 2TB partition limit is an important knowledge regarding GPT vs MBR, in most cases actually more...
December 21, 2011 at 5:57 am
Meaning the lowest Id. The order of the rows is not guaranteed.
select min(id), name
from table
group by name
December 21, 2011 at 5:35 am
Locate the snapshot file on your file system, and loot at its properties. You'll see that the size is the same as your database file, but size on disk is...
December 21, 2011 at 5:33 am
First of all, BACKUP (Transact-SQL) has a lot of useful information.
1. A Copy only backup does not interfere with your backup strategy. A differential or a log backup will never...
December 21, 2011 at 4:48 am
A little piece of missing information: You describe some of the differences between MBR and GPT, but in my opinion you lack the most important one: MBR can only host...
December 21, 2011 at 12:44 am
First of all, I agree with Dev on the syntax. So, to your issue. If you have referential integrity, you have to delete from the referencinig tables first, followed by...
December 20, 2011 at 7:08 am
And to add a few other points:
* All or some of the columns in the primary key may also be a foreign key.
* A foreign key does not have to...
December 20, 2011 at 6:28 am
Viewing 15 posts - 196 through 210 (of 440 total)