Viewing 15 posts - 8,056 through 8,070 (of 9,253 total)
Couldnt agree more! Litespeed or SQLBackup are both great products.
Redgate offer generous discounts too which make the product affordable and it has great features. I use it and recommend it!
April 21, 2010 at 11:24 am
if you only want a 2 node cluster Std edition should suffice. You will lose a few other features but its still an option
April 21, 2010 at 11:18 am
to further my point and using Pauls kind example
the following would fail and hence, would only allow a single NULL value
USE tempdb;
GO
CREATE TABLE dbo.Parent
...
April 21, 2010 at 9:33 am
sorry my bad that is only for SQL 2005 onwards
April 20, 2010 at 12:42 pm
just out of interest what version SQL server are we talking here?
April 20, 2010 at 12:37 pm
WayneS (4/20/2010)
Perry Whittle (4/17/2010)
when referring to key constraintsPrimary key does not allow NULLs
Unique key allows a single NULL value
so the 2 are different in that respect
I was just thinking about...
April 20, 2010 at 10:44 am
mate, your keen this thread is over a year and a half old 🙂
April 20, 2010 at 8:14 am
are you seeing this on all databases that are having indexes rebuilt??
April 20, 2010 at 4:27 am
run this on each server and it will create an alter login script with the old password
select 'alter login [sa] with password = ' +
sys.fn_varbintohexstr(password_hash) +
' hashed' +...
April 20, 2010 at 3:32 am
create index and alter index rebuild are both minimally logged.
What is it leads you to believe they're not?
April 20, 2010 at 3:02 am
hi
can you post a screenshot of the server logins from management studio
April 20, 2010 at 2:21 am
Jeffrey Williams-493691 (4/19/2010)
there are times when using a local account is the right thing to do.
in my opinion only when using a windows workgroup
April 20, 2010 at 2:02 am
local accounts work even on a domain, but you have to replicate them from machine to machine using the same username and password, much the same as you do in...
April 19, 2010 at 2:45 pm
either perform a
RESTORE FILELISTONLY FROM DISK = 'diskpath\filename.bak'
or use the following against the original database
Use yourdb
exec sys.sp_spaceused
this will give you an idea of the space used\required
April 19, 2010 at 2:36 pm
If you're using VMWare ESX\VI then VMWare don't recommend 4 vCPU's. In extreme cases it can cause the host CPU to max out. All VM's are generally created with 1...
April 19, 2010 at 8:58 am
Viewing 15 posts - 8,056 through 8,070 (of 9,253 total)