Viewing 15 posts - 1,321 through 1,335 (of 1,655 total)
April 12, 2007 at 11:15 am
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...
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
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...
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...
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...
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...
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...
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...
April 10, 2007 at 3:22 am
Just execute the script in query analyzer and it will create the jobs.
Markus
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
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...
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...
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...
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
March 28, 2007 at 7:44 am
Viewing 15 posts - 1,321 through 1,335 (of 1,655 total)