Viewing 15 posts - 421 through 435 (of 484 total)
Very heavy usage of CPU sos hould avoid during normal hours.
Simon Sabin
Co-author of SQL Server 2000 XML Distilled
October 18, 2002 at 10:03 am
Its all about virtual log files and that you need to get back to the beginning before you can truncate and shrink the physical file.
The basic process is
Set the recovery...
October 17, 2002 at 6:44 pm
There is a great article on SQL mag about retoring backups, including file backups, differential backups.
http://www.sqlmag.com/Articles/Index.cfm?ArticleID=25915
You will need to register.
Simon
Simon Sabin
Co-author of SQL Server 2000 XML Distilled
October 17, 2002 at 6:39 pm
Many areas of possibility, if you want to code this the SQLDMO is probably your best option. This is want enterprise manager is based on
Simon Sabin
Co-author of SQL Server 2000...
October 17, 2002 at 6:34 pm
Put it this way MS found it difficult to find a source of data that tested the limits of SQL server and came up with satellite pictures and thus terraserver,...
October 17, 2002 at 6:32 pm
The only reason I have to have user sps in master is to be able to run them from any database with out the need to copy them to that...
October 17, 2002 at 6:28 pm
How are you calling the stored procedure in .net. It looks like you are not using parameters, which could be an issue with compilation.
What is the SQL of the report?
Simon...
October 17, 2002 at 6:25 pm
Sorry not possible.
Not sure what benefit you get if the billingdate and vehicletype are indexed.
Also using <= today generally doesn't benefit from an index because it doesn;t filter the...
October 17, 2002 at 6:17 pm
If your SQL 7 was not licensed under a downgrade i.e. SQL2000 downgradedto SQL 7 you will have to buy new licenses for SQL2000 as of 1 July, when MS...
October 16, 2002 at 5:23 pm
Your function in the example is not restricting on the billingdate is this an issue.
I thought in line functions get optimised in a similiar fashion to views, but I would...
October 16, 2002 at 5:21 pm
is the location being specified as a UNC path. I have known in the past with w2k selecting a UNC path but what got stored is a local path to...
October 16, 2002 at 4:56 pm
Do you have any amount of down time ?
Log shipping is another option.
The name thing is biggest problem I see. How do you have both servers up but called the...
October 16, 2002 at 4:52 pm
Apart from the security issue dynamic SQL is not bad if it is written using parameterisation (sp_executesql).
It is the easiest way to perform complex searching where the search conditions...
October 16, 2002 at 4:43 pm
Quickest way to copy data from db to db is select into, from server to server is bcp out and then bulk insert in. Putting exclusive tablelocks speeds things up...
October 16, 2002 at 4:37 pm
It would be so nice to have global variables
Anyway to get hold of the username 2 options I know of,
use SETUSER on each connection...
October 16, 2002 at 4:35 pm
Viewing 15 posts - 421 through 435 (of 484 total)