Viewing 15 posts - 1,231 through 1,245 (of 1,417 total)
Check if you can access the remotely created DB with the credentials used by the connection using SSMS.
I guess you must create a user on the new database (and/or reconnect...
February 24, 2009 at 7:31 am
Sakthivel Chidambaram (2/24/2009)
So SQL 200 to 2005 migration is possible? 😀
Migration from SQL 2000 to a new version (2005 or 2008) is possible, but if you want to migrate from...
February 24, 2009 at 7:23 am
ALZDBA (2/11/2009)
(N)Text needs to be replaced with (N)varchar(max). Those can contain up to 2GB of data (1 for...
February 11, 2009 at 5:49 am
As ALZDBA allready told, 8060 is the maximum number of characters that fit in NVARCHAR. If you really want to convert the NTEXT you must limit the amount of data....
February 11, 2009 at 4:06 am
Perhaps you can find the solution on http://msdn.microsoft.com/en-us/library/ms161561.aspx.
Pay special attention to step 10 from "configure and run the package" on that page!!
February 11, 2009 at 3:29 am
Can you post the error message?
And did you check the account of the SQL Agent service? Is it the same as the account compared to the server that executes correct?
February 11, 2009 at 3:19 am
To import data from other sources you can use SSIS. Any issues that can occur depend on your systems and needs. There is no way to tell you about it...
February 10, 2009 at 6:33 am
I suggest to use Windows Performance counters for CPU, memory and disk-IO usage. Run it for a day or a week to get clear knowledge of the servers performance. This...
February 10, 2009 at 6:19 am
William Vach (1/9/2009)
I don't believe that you can move the mssqlsystemresource (resource) database.
I agree with William: I thought the question is which system databases can be moved. Therfor I didn't...
January 9, 2009 at 6:39 am
From the MSDN site http://msdn.microsoft.com/en-us/library/ms345392.aspx I read the following:
An identical view of reporting data from all servers.
This assumes that all of the server instances are configured identically, for example, that...
January 8, 2009 at 12:20 am
Indianrock (1/5/2009)
Multiple log files: I thought the recommendation was one log file per cpu, for performance?
That's recommended for the data-files of the TempDB... (also keep them the same size)
January 5, 2009 at 5:56 am
madhu.arda (1/2/2009)
as you said We added a scheduled job to change the setting to ON just before the REORGANIZE of indexes and a job to set it back to...
January 3, 2009 at 7:57 am
Schedule this command in a job to delete all backups that are older then 2 days:
DECLARE @Date DateTime
SET @Date = GetDate() -2-- determine date of day before yesterday
EXECUTE master.dbo.xp_delete_file 0,...
December 18, 2008 at 11:20 pm
Thanks for all the replies...
I've stopped my trace and created a new one, now with saving results to a file...
December 18, 2008 at 10:46 am
Are you sure the job is running during the weekend? SQL itself is not aware of the weekday when running a job.
December 18, 2008 at 1:45 am
Viewing 15 posts - 1,231 through 1,245 (of 1,417 total)