Viewing 15 posts - 601 through 615 (of 1,248 total)
Here is my thought.
Regardless the indexes, there is no difference, assuming we only have full table scans. But there will be a lot of difference in 2X2 and 4X1 joins...
March 5, 2008 at 9:42 am
You may use IMPORT/EXPORT data. It is faster to setup.
March 5, 2008 at 8:06 am
If you input data manually, what if you only input file name?
If you would like to input data programmically, you may consider to use Scripting.FileSystemObject, which can retrieve file name...
March 5, 2008 at 8:03 am
Two suggestions
1. Shrink its log file;
2. Backup msdb again;
Or
1. Export data;
2. Rebuild msdb;
March 4, 2008 at 8:44 pm
It is most likely a bug in SQL Server. It happens when there is some issues in networking, in particular when you are retrieving large amount of data.
http://support.microsoft.com/kb/827452
http://support.microsoft.com/kb/834720
Try to apply...
March 4, 2008 at 7:43 pm
otian (3/4/2008)
It is MS SQL 2000. The Enterprise Manager can do that.
Yes, you are right. SQL 2000 can do it in a similar approach as SQL 2005.
Generate Scripts, choose option,...
March 4, 2008 at 7:25 pm
It really depends. Since you have SQL Server and IIS on the same server, I would like to recommend you limit the memory used by SQL Server because it can...
March 4, 2008 at 7:18 pm
You are right. If the user is the owner of the view, it means that he has the same authority as the person who created this view. To create a...
March 4, 2008 at 11:50 am
Create a view;
Grant SELECT on this view to the user (GRANT SELECT ON VIEW1 TO viewtest);
The user does not have access to the related tables.
March 4, 2008 at 11:00 am
You did nothing wrong. But you need to do one more task to shrink your log file, such as
DBCC SHRINKDATABASE('DBName')
to release the disk space.
March 4, 2008 at 10:27 am
How about to change the execution account to others, such as local account?
March 4, 2008 at 10:15 am
Your snapshot may run at peak houts. You may try to change the schedule of your snapshot. May it work.
March 4, 2008 at 9:44 am
If there is no working experience at all, he is still a beginner even if he passed certified exam.
March 4, 2008 at 9:34 am
I do not think you can. But you can restore your msdb to a server with right version, and export data to your desktop.
March 4, 2008 at 9:27 am
How do you define the remote SAN? If SAN storage is remote, the answer is YES. We use it.
March 4, 2008 at 9:24 am
Viewing 15 posts - 601 through 615 (of 1,248 total)