Viewing 15 posts - 31 through 45 (of 153 total)
In general I just keep a timewindow open for automatic update. But I once used a batch file that started on windows startup. It used head to read the first line...
March 18, 2005 at 3:20 am
First, it is better to post this kind of questions in the performance forum.
There are lots of possibilities. The most obvious is "do regular update statistics", automatic or throught a...
March 16, 2005 at 4:12 am
I don't know foxpro, but are you looking for this t-SQL function?
ISNULL ( check_expression , replacement_value )
March 16, 2005 at 4:01 am
My guess would be that the last but one log backup takes too long.
There is a posibility to get more information from the maintenance plan.
Let the job that does the...
March 4, 2005 at 8:49 am
I wrote the following for internal use. It just puts all the date format material from the books online together.
Joachim.
January 4, 2005 at 2:13 am
I thought "Enable report execution logging" in the site settings meant logging in the database, but I might be mistaken.
If you are talking about the logs in "C:\Program Files\Microsoft SQL...
December 29, 2004 at 3:16 am
For the reports, datasources etc. you need to backup the ReportServer database.
Backing up applications under windows is complicated. Use a ghost image or restore Reporting Services again.
December 29, 2004 at 2:31 am
When I have a hard coded date, I use convert with the appropiate datestyle to convert the string to a date. That makes it independent of the environment.
October 1, 2004 at 8:42 am
(It seems my previous reply did not arrive.)
No, you wil need hints.
It is possible let a certain table always use table locks, but not to let it always use rowlocks
April 21, 2004 at 6:48 am
You can use the "with (rowlock)" hint in your statements.
The traceflag 1211 (DBCC traceon(1211)) prevents all lock escalation on the whole server.
Joachim.
April 21, 2004 at 5:29 am
If I understand you correctly, the user dbo in the database is bound to the login jim . In that case you have to look at permissions for user dbo.
Joachim.
February 6, 2004 at 9:17 am
I also have a Windows 2000 server with .Net 1.1 recently installed, but that had no effects on SQL Server. There are no strange login attempts. As far as I know .Net...
January 20, 2004 at 9:23 am
In theory the limiting factor could be output to screen, although I never saw the CPU go to 0 because of that. Minimizing isqlw could make a difference.
I tried it on my...
January 19, 2004 at 9:01 am
I never found a way.
As a work around I let awk (gawk actually) check the output file for the regular expression /Msg/||/[Ee]rror/ and exit awk with an error code if...
January 19, 2004 at 8:11 am
I agree with Anil, but the it is better to put the pagefile with the SQLServer program files or OS than with database files. The OS programs and sqlserver program...
January 16, 2004 at 7:03 am
Viewing 15 posts - 31 through 45 (of 153 total)