Viewing 15 posts - 226 through 240 (of 458 total)
You could try creating a view on the remote server/db and specifying nolock in the view I believe. Then just select from the view.
February 13, 2007 at 2:06 pm
In 2005 Management Studio you can right click the database, Tasks -> Generate Scripts.... Follow the instructions and in the "what to script" section set everything to false except...
February 13, 2007 at 12:02 pm
Use Dateadd...
UPDATE schedule
SET start_time = DATEADD(hh, 4, start_time)
WHERE DATEPART(hh, start_time) = 5
AND class_id = 100
February 12, 2007 at 4:41 pm
I remove BUILTIN\Administrators from the SQL Server.
Make sure you add your own login to SQL first, however.
February 9, 2007 at 2:00 pm
sp_msforeachdb 'SELECT ''?'' AS db_name, name as table_name from ?..sysobjects where xtype = ''U'' order by name asc'
Try that...
February 9, 2007 at 10:24 am
Exactly... When the buffer/cache hit ratio falls it means that the system was able to find the data it needed in the buffer and not have to go to...
February 8, 2007 at 11:56 am
But yes... 1GB of total server memory is really low.
February 8, 2007 at 11:41 am
Use performance monitor and watch the Memory -> Pages/Sec counter. This should be right around 0 most of the time. Also SQLServer:Memory -> Buffer/Cache hit ratio is good...
February 8, 2007 at 11:41 am
Use the full naming convention, i.e. "EndoCohort.dbo.Endo_Cohort_DHQ". You can reference table objects like this:
[ServerName].[DBName].[Owner/Schema].[Table].[Column]
February 8, 2007 at 11:02 am
Well, therein lies the difficulty.
I tend to err on the side of the more "academic" approach, personally. Though I do try to take into account whether the tables will...
February 7, 2007 at 3:02 pm
I'm of the opinion that you should review your indexes regularly to ensure they are helpful and useful and add/remove indexes where necessary. That being said... data grows.
Placing an...
February 7, 2007 at 2:33 pm
Windows authentication is never "switched off" per se. SQL Server supports either Windows authentication only (more secure) or Windows + SQL authentication (less secure).
It can always be changed over,...
February 7, 2007 at 11:25 am
from the command line:
nslookup 123.45.67.89
February 6, 2007 at 8:50 am
sp_msforeachdb will allow you to execute the same block of code using each database.
What you want to do is substitute in a question mark for the name of the database....
sp_msforeachdb...
February 5, 2007 at 8:59 am
Try Tools -> Options -> Results tab -> Maximium characters per column...
see if that works?
February 2, 2007 at 4:52 pm
Viewing 15 posts - 226 through 240 (of 458 total)