Viewing 15 posts - 526 through 540 (of 1,655 total)
T Lehtinen (1/12/2009)
Hello!Is it possible to do 2-node active/active sql-2008 cluster with SQL-server strandards (with enteprice windows server)?
Haven't tried it with SQL 2008 but with 2005 it is possible, though...
January 14, 2009 at 1:54 am
I don't remember the exact screen, but when you select the features to install click on advanced and then I think when selecting the Database Engine there's the possibility to...
January 14, 2009 at 1:37 am
Gaby A. (1/13/2009)
MarkusB (1/13/2009)
January 13, 2009 at 8:57 am
I just did some testing myself and even though I can't find anything in the official documentation it seems like the function get_sid() has been removed from SQL 2005 or...
January 13, 2009 at 8:41 am
No, I don't know how exactly DTA determines which indexes it recommends and I only use it occassionally.
But you say you wouldn't come up with the recommended index and...
January 13, 2009 at 5:48 am
jordonpilling (1/13/2009)
parsename!!!!!!!!!!!!! how have i never come accross this function before?!?! Cheers for that!
Yes, it's one of the less known function, but when it comes to working with Ip-addresses it's...
January 13, 2009 at 4:57 am
Unfortunately you don't write if you're using the 32-bit o 64-bit version. On the 32-bit version you need to enable AWE in SQL Server to address more than 4 GB...
January 13, 2009 at 4:51 am
This will work
DECLARE @file VARCHAR(100)
SET @file = 'D:\backup\databasename\Backupname.bak'
SELECT LEFT(@file, LEN(@file) - CHARINDEX('\',REVERSE(@file)))
January 13, 2009 at 2:58 am
Another possiblitity is this:
DECLARE @ip_part VARCHAR(15)
SET @ip_part = '192.168.0.27'
SELECT PARSENAME(@ip_part, 1)
January 13, 2009 at 2:33 am
I think this is the article you're looking for http://www.sqlservercentral.com/articles/Administration/64732/
January 12, 2009 at 6:21 am
sp_spaceused can be inaccurate, unless you execute DBCC UPDATEUSAGE before.
See BOL for more info.
January 12, 2009 at 5:45 am
Error 112 usually indicates that there's not enough space on the disk.
January 12, 2009 at 3:40 am
I'm a bit confused about whay you were doing.
You say you restored from a .bak file and then attached the files? Normaaly when you restore from a .bak file there's...
January 12, 2009 at 1:46 am
It's a good and simple tool, but you have to know how to use it.
Here are two useful articles:
http://www.sqlteam.com/article/benchmarking-disk-io-performance-size-matters
http://sqlblog.com/blogs/linchi_shea/archive/2007/02/21/parse-the-sqlio-exe-output.aspx
January 12, 2009 at 1:31 am
DBCC PINTABLE actually has no effect in SQL 2005.
It's one of the discontinued commands in 2005.
January 8, 2009 at 6:50 am
Viewing 15 posts - 526 through 540 (of 1,655 total)