Viewing 15 posts - 1,321 through 1,335 (of 1,654 total)
I'm not so sure. During a presentation from MS a couple of weeks ago they said that Itanium are mostly preferrable on system with 8 or more CPU's.
On a system with...
[font="Verdana"]Markus Bohse[/font]
April 12, 2007 at 9:04 am
Joel,
not sure what you have tried, but this works on my system:
SELECT REPLACE('Microsoft™',char(153),'')
Markus
[font="Verdana"]Markus Bohse[/font]
April 12, 2007 at 8:56 am
Trigger,
there's no need to enable AWE. And from what I understood, you only need the "lock pages in memory" option on a 64-bit system. So if you're running a 32-bit...
[font="Verdana"]Markus Bohse[/font]
April 12, 2007 at 3:12 am
I applied SP1 and SP2 on several clusters and never had any real issues. For the clustered services (DB Engine, AS) the SP installation will automatically upgrade both nodes. But...
[font="Verdana"]Markus Bohse[/font]
April 11, 2007 at 7:55 am
James,
yes that's the right approach. I forget to mention in my earlier post that you shoould run update statistics after restoring the databases to SQL 2005, because the old statistics...
[font="Verdana"]Markus Bohse[/font]
April 11, 2007 at 5:19 am
You can use something like this:
USE msdb
go
DECLARE @date datetime
SET @date = floor(convert(float,getdate()))
SELECT backup_start_date,database_name, type, CONVERT(decimal(20,2),
backup_size * 1.0/1024/1024) as MB,
CONVERT(varchar(12), backup_finish_date - backup_start_date,108) as BackupTime
FROM backupset
WHERE backup_start_date BETWEEN @date...
[font="Verdana"]Markus Bohse[/font]
April 11, 2007 at 4:20 am
Since you post is caled restore sql7 to 2005, the answer is yes you can restore SQL7 backups on a 2005 server. You might want to change the compatibility level...
[font="Verdana"]Markus Bohse[/font]
April 11, 2007 at 4:07 am
Sounds nice, only problem is I laready passed all exams behalve the BI exams and I don't think I will take these anytime soon. So looks like I have to...
[font="Verdana"]Markus Bohse[/font]
April 10, 2007 at 3:22 am
Just execute the script in query analyzer and it will create the jobs.
Markus
[font="Verdana"]Markus Bohse[/font]
April 6, 2007 at 1:10 am
I usually just script all the jobs in EM. Select all the jobs you want to script, right-click them and select "generate script"
Markus
[font="Verdana"]Markus Bohse[/font]
April 5, 2007 at 12:56 am
Ed,
if you're running your script within a SQL server job there are usually two possibilities. It can either run under the security context of the job owner or the SQL...
[font="Verdana"]Markus Bohse[/font]
April 4, 2007 at 9:09 am
Jim,
index depth is basically the number of levels in an index b-tree. See also http://msdn2.microsoft.com/en-us/library/ms177443.aspx
The reason index with a depth of 0 are excluded is that such an index...
[font="Verdana"]Markus Bohse[/font]
March 30, 2007 at 5:35 am
Jason,
I agree there are lot's of sources and sometimes it's hard to choose. If you've never done anything like this I would start with the Tutorials from BOL in SQL...
[font="Verdana"]Markus Bohse[/font]
March 29, 2007 at 6:00 am
Sri,
you need to enable either TCP or Named Pipe as a Server protocol. With shared memory only local clients can connect.
Markus
[font="Verdana"]Markus Bohse[/font]
March 28, 2007 at 7:44 am
Sorry Jack,
but this is probably the 10th time someone posted this question during the last two or three months. Just do a search for cluster 2005 2000 on this...
[font="Verdana"]Markus Bohse[/font]
March 28, 2007 at 1:06 am
Viewing 15 posts - 1,321 through 1,335 (of 1,654 total)