Viewing 15 posts - 19,516 through 19,530 (of 22,202 total)
Funny that we both fixed the JOIN as well as putting in the IF.
Well, normally I'd say to stay out of my head, but since you posted first, I'll try...
September 29, 2008 at 9:11 am
jlp3630 (9/29/2008)
DECLARE @brand_id INT;
SET @brand_id =...
September 29, 2008 at 9:01 am
Exactly right.
It also brings up nullability, which should be used as sparingly as you can.
September 29, 2008 at 8:37 am
Oh, and files and file placement. Minimum, split the data and the log to two different drives. After that, it depends on the types of drives you're working with, the...
September 29, 2008 at 8:15 am
Unless there's a very good reason for it, most tables should have a clustered index. Be sure that, even if the database is normalized, it has appropriate primary and foreign...
September 29, 2008 at 8:11 am
I'd suggest running a trace while the events are occurring. Collect the data out to a file. You can then import it back into a table on a different server...
September 29, 2008 at 7:33 am
The individual users are validated through AD and the group they belong to. So we only have to give access to the group. It is a trusted windows connection.
September 28, 2008 at 4:24 am
You're just more diligent than I am. If I can't get it installed, I toss my hands up & move on. Since I've started working exclusively on virtuals when I'm...
September 28, 2008 at 4:17 am
My most recent set of beta testing is with the Visual Studio Team System Database Edition. They've got a new release coming out to support SQL Server 2008, but it's...
September 26, 2008 at 9:31 am
A view is just a query. They can be somewhat optimized, but since they usually don't include much in the WHERE clause, there's little that can be done. So, if...
September 26, 2008 at 8:33 am
You might want to get the developers to put their database structures into source control. That way a given development database can be rebuilt from scratch. Further, as they start...
September 26, 2008 at 8:27 am
We connect AD groups to roles within a database and assign priveleges to the role. It works really well. We just don't get into managing individual logins.
The major shortcoming to...
September 26, 2008 at 8:25 am
I'd suggest Itzik Ben-Gan's Inside SQL Server 2005: TSQL Querying. That's a great source for really learning how TSQL works and how to apply it to a lot of real...
September 26, 2008 at 8:19 am
Because you guys are running express, you actually have choices. I've got a machine with at least three versions of express from three different third party apps all running side-by-side...
September 26, 2008 at 8:16 am
Viewing 15 posts - 19,516 through 19,530 (of 22,202 total)