Viewing 15 posts - 5,896 through 5,910 (of 7,501 total)
regarding the /3Gb setting I use the guidelines published at http://www.sql-server-performance.com/awe_memory.asp
February 19, 2007 at 7:54 am
I think you can find some at SSC.![]()
February 19, 2007 at 6:09 am
indeed
February 19, 2007 at 5:09 am
If you use management studio, you can modify a table, change an indexed column's collation and have SSMS generate the script it would execute. (cancel the modification!)
Have a look at the...
February 19, 2007 at 3:41 am
DECLARE @command1 nvarchar(2000)
-- Set parameter values
Select @command1 = 'if not exists (select * from master.dbo.syslogins where loginname = N''yourdomain\youruser'')
exec sp_grantlogin N''yourdomain\youruser''
exec sp_defaultdb N''yourdomain\youruser'', N''XLANG''
exec sp_defaultlanguage N''yourdomain\youruser'', N''us_english''
GO
if not exists (select...
February 16, 2007 at 5:04 am
- if you're using ssms to execute the query, you can see it's elaps time on the bottom of the ssms-window
- if you want more info, check "Displaying Execution...
February 16, 2007 at 4:53 am
- did you provide the same mail-profile (exact !) at the nodes ?
February 16, 2007 at 4:37 am
- when paging occurs, your server will slow down horribly !
- find out why it is paging because you should avoid it !
- If your db are to the optimum,...
February 16, 2007 at 12:48 am
yes.
compare it to one tree or two trees ![]()
an index has a key-part an one leaf-level containing one row for each row in the...
February 15, 2007 at 8:07 am
- keep in mind OUTLOOK is not cluster aware.
- if you ensist on using outlook, you'll have to perform a second exact ! installation at the node where you didn't...
February 15, 2007 at 6:46 am
like the message says, you're trying to convert a varchar to a numeric datatype. The content of the varchar is not a number !
This can also occur with implicit conversions
February 15, 2007 at 5:38 am
- with sql2005 you would use ddl-triggers saving everything you would want to.
- with sql2000 you could try to use this trace but would not have that much detail as...
February 15, 2007 at 5:35 am
you could use smtpmail in stead of sqlmail.
have a look at SQLDev.Net
February 15, 2007 at 2:39 am
- If it all started all of a sudden, I would begin with starting a sql trace for e.g. one hour. Then examine the results and search for big consumers....
February 15, 2007 at 1:36 am
- What do you want to monitor about the errorlog ? Size or content ?
- we use a scheduled (sqlagent) job to start new errorlogs at least every week using...
February 15, 2007 at 1:22 am
Viewing 15 posts - 5,896 through 5,910 (of 7,501 total)