Viewing 15 posts - 106 through 120 (of 153 total)
We had a similar problem with a part of our program. Other programs had no problem. Setting the database compatibility level to 70 solved it.
Maybe the optimizer for...
April 8, 2003 at 5:39 am
David,
how do you make sure that the sid is the same on the two machines?
I just adapt the user sids with sp_change_users_login
February 27, 2003 at 5:17 am
I cannot think of a good reason tho shrink databases and logs every night. The growth back on the next day only costs extra performance.
If the trans logs fill...
February 20, 2003 at 9:42 am
The sqlserver version for dbms_utility.analyze_schema is sp_updatestats. You do not need parameters. Alamir's suggestion of autostatistics does it autmatically after some number of mutations.
February 20, 2003 at 4:31 am
I once accidentally did run transaction log backup en database backup at the same time and had no problems.
Have you tried to log the job?
February 20, 2003 at 4:05 am
Thanks for the advice
The NT administrator said he had not changed the permissions, but he had to do a forced reboot, because something did not stop on the server...
February 11, 2003 at 1:27 am
I have no experience whith arabic characters, but my experience with diacritic characters is that a question mark means that the client cannot display the character.
February 10, 2003 at 9:47 am
My guess is that you do not have a resources problem, but a locking problem. Your users are waiting on each other.
Are you sure about the nolock option?
Are tables...
February 4, 2003 at 4:28 am
We do, but that is because I do not have complete control over the servers.
There is certainly a performance issue if the databases are scanned. If files with .mdf...
February 4, 2003 at 4:00 am
This is weird. I never saw this before but had the same error yesterday. There was also a diskspace error and the server did nothing.
Like you not AWE...
February 4, 2003 at 3:23 am
Did anybody try the new SQL Critical Update utility?
You can find it at
http://www.microsoft.com/sql/downloads/securitytools.asp
If it works we can be lazy.
Joachim.
February 3, 2003 at 3:34 am
quote:
Can't say I am thrilled about the change to sp_change_users_login--requirement for @password. It is good thing closing potential security holes, though!
January 27, 2003 at 3:30 am
In SP 3 there is a new function fn_get_sql, that can read more than 255 characters.
Here an example from the sp3readme.htm
DECLARE @Handle binary(20)
SELECT @Handle = sql_handle FROM sysprocesses WHERE spid...
January 24, 2003 at 9:39 am
I do not know an online resource, but the SQLServer 2000 Resource kit has a chapter (about 1000 pages) on SQLServer equivalents of Oracle features.
As for Database link, try...
December 16, 2002 at 8:36 am
Viewing 15 posts - 106 through 120 (of 153 total)