Viewing 15 posts - 21,046 through 21,060 (of 22,202 total)
Check the logs. If you had six, you should have seven now. Cycling the error logs simply stops the logging in one log and starts it in the next, new...
February 12, 2008 at 1:23 pm
Why on earth would you need more than 99 error logs? Actually, why would you need more than ten?
The thing I suggested would just show you if you had more...
February 12, 2008 at 1:10 pm
Itzik Ben Gan from Solid Quality Mentors. He wrote the book, literally.
February 12, 2008 at 12:49 pm
Cycle the error log:
EXEC sp_cycle_errorlog;
February 12, 2008 at 12:47 pm
It's not like date fields where there are a lot of special functions. We just use decimal.
February 12, 2008 at 10:37 am
It depends (I love that answer). To me, this is a business definition. Strictly looking at data, as data, no, none of these columns help to define the Address object....
February 12, 2008 at 5:30 am
Absolutely true.
You also might want to look at having simply an Address table with a join table to associate addresses to contacts. That way when you get a married couple...
February 11, 2008 at 10:17 am
The first four of those columns you're talking about are there for auditing purposes and shouldn't have anything to do with relational integrity. The last column, the guid, I'm assuming...
February 11, 2008 at 9:36 am
Since you're not, in any way relating the data between these tables, an odd thing, you could do something like this:
SELECT 'TableA' AS TableName
,Cola AS FirstColumn
FROM dbo.TableA
UNION ALL
SELECT 'TableB' AS...
February 11, 2008 at 9:32 am
If you have to use dynamic sql, be sure to look up & understand sp_executesql as the preferred method of calling it rather than using exec 'somestring'
February 11, 2008 at 8:36 am
I'd have to go all the way to "stupid practices." If I was feeling kind, I might call it "ignorant practices." If I wasn't feeling kind, it'd be "f'ing stupid...
February 11, 2008 at 8:26 am
I find that I'm with the you need both an artificial key and a natural key camp. Usually, but not always, the artificial key is an identity. However, I also...
February 11, 2008 at 7:07 am
tymberwyld (2/10/2008)
Grant Fritchey (2/7/2008)
February 11, 2008 at 6:25 am
Internal to SQL Server, they peform almost identically. The main difference is that OPENXML has to instantiate an XML parser that chews up a ton of memory outside of SQL...
February 11, 2008 at 6:06 am
In my opinion, this would not be a primary counter for checking performance. I'd use it once I've already identified range scans as an issue because of excessive waits or...
February 8, 2008 at 8:42 am
Viewing 15 posts - 21,046 through 21,060 (of 22,202 total)