Viewing 15 posts - 211 through 225 (of 296 total)
EdVassie (1/19/2009)
January 19, 2009 at 5:06 am
We have servers with 100+ databases that are low volume, and never have any performance issues. We have other servers with 2 databases for one app (vendor product thsat is...
January 19, 2009 at 2:58 am
Steve Jones - Editor (1/16/2009)
Suite? Who gets a suite?Room, bed, shower, that's about it.
That's better than a friend who worked for a really cheap company that expected employees to share...
January 18, 2009 at 12:19 am
I've been travelling internationally since 1972, when I was 13, and have lived overseas for 11 years of my life, and spent lots of time in other places on business...
January 15, 2009 at 1:23 am
GSquared (1/13/2009)
As a note, he had the production server and the dev server open in Management Studio at the same time,...
January 14, 2009 at 7:18 am
All companies should have a clear data retention policy that is enfoced across the board. If the policy is that certain data is kept 5 years then destroyed, a court...
November 20, 2008 at 12:34 am
I don't think you are likely to see improvements of this magnitude by performing database maintenance. When we moved from SQL 7 to SQL 2000, we had a process that...
November 18, 2008 at 11:54 pm
Triggers aren't always bad, it just depends on how they are used. We use triggers to activate interfaces we've built on vendor provided software - without the trigger, we woldl...
November 9, 2008 at 12:35 am
So, what happens if you create a table of the employee types with an extra column to mark the ones you want, ie columns EmpType int and InQuery bit, populate...
November 6, 2008 at 3:53 am
IceDread (10/24/2008)
October 26, 2008 at 12:01 am
Why not just make sure no one has permissions to execute those stored procedures? That's a lot better than running the risk of breaking an important process becuase a vital...
October 20, 2008 at 2:04 am
+1 on profiler. I use profiler all th etime to determine what vendor apps are doing. I do recommend doing this on a test server, as it's easier to isolate...
October 13, 2008 at 5:23 am
I can't think of a situation where any developer needs to have full access to a production database. Developers should never, under any circumstances, for any reason, have full access...
October 5, 2008 at 5:17 am
You may need to specify the columns. The error message indicates you've exceeded the limit of the Jet driver. My guess is that select * from the spreadsheet tries to...
September 23, 2008 at 5:02 am
Try this:
Set @sql = 'Select P.ID_no ,zv.ZoneIn from ZonesVisited zv
Join Positions P on zv.PositionID = p.ID
Join Individuals I on I.ID_no = P.ID_no
Where
zv.zoneout is...
September 18, 2008 at 4:25 am
Viewing 15 posts - 211 through 225 (of 296 total)