Viewing 15 posts - 136 through 150 (of 156 total)
That's what I thought should happen. Although, I'm a little confused because we have another server that has much less usage and SQL Server is using close to 3.0GB of...
May 8, 2008 at 7:20 am
I changed jobs in Oct '07 and the market for SQL Server DBAs was great in the Chicago area. The recruiters/employers were relentless and they said there were more jobs...
April 18, 2008 at 7:46 am
I have worked for several companies and never provided salary history on my resumes. However, I reluctantly give a salary range when asked, so as to not give the impression...
April 11, 2008 at 7:36 am
I have subscribed to the magazine for several years and think it's very worthwhile. I purchased the CD once early on but never really used it. I always end up...
March 11, 2008 at 9:40 am
As much as some of us hate to admit it, we all are part of the political capital game. It plays a role in all aspects of life. My spouse...
February 22, 2008 at 8:29 am
If I am in an interview and asked to respond to a question that I know is false, my immediate response would be "Is this a trick question?". Then I...
February 7, 2008 at 7:55 am
As a workaround, I used a slightly different method that allows one to manipulate the SQL
before it is writtent to file. REPLACE is used to eliminate all brackets before output...
January 28, 2008 at 8:39 am
Another method is to use a lookup table. This is helpful especially if you have a multi-customer environment where you have to be selective in the databases to be included...
January 4, 2008 at 9:24 am
What kind of RAID array does your server have? Have you verified all disks in array are good?
December 18, 2007 at 7:26 am
Try stopping/re-starting SQL Server.
December 14, 2007 at 7:11 am
Whenever I get this error, I break it down by selecting from primary table, then adding joins one-by-one until the error. Check the following as you do this:
- derived tables...
December 13, 2007 at 7:26 am
You can filter on ObjectID (Filters tab of Trace Properties form) for the UDF. Obtain ID from sysobjects system table.
November 15, 2007 at 7:43 am
If your main challenge is dynamically obtaining the structure for any table, doing something like the following may help:
declare @sql varchar(1000), @TblNm varchar(100)
set @TblNm = 'Table'
October 26, 2007 at 9:14 am
Viewing 15 posts - 136 through 150 (of 156 total)