Viewing 15 posts - 526 through 540 (of 5,356 total)
No, both yield the same result. My version is the ANSI way of doing JOINs, and according to MS preferable to yours.
April 19, 2005 at 5:38 am
Btw, normally you would give columns containing the same data the same name throughout the database. Forgot this in my example.
April 19, 2005 at 4:23 am
A PRIMARY KEY is a logical construct that is created from one or more columns of your table. You would join on multiple columns like this:
SET NOCOUNT ON
CREATE TABLE master
(
m1 INT
,...
April 19, 2005 at 4:20 am
See if this helps: http://www.microsoft.com/resources/documentation/sql/2000/all/reskit/en-us/part2/c0761.mspx
April 19, 2005 at 4:08 am
No, this is not possible in SQL Server.
Maybe this will help: http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=8&messageid=7956
April 19, 2005 at 3:58 am
http://www.sqlservercentral.com/search/turbo.asp Enter "interview question", check "Search Articles" and "Search Discussions"
Lots of useful information for you to explore.
April 19, 2005 at 2:56 am
Nah, this is SQL Server's questionable feature to create the Primary Key clustered unless you explicitely state otherwise. While I think this is better than not having a clustered index...
April 19, 2005 at 2:53 am
Well, I must confess I use this only for more or less private use. Some 4 or 5 other people in my company use it. I do receive some ~200...
April 19, 2005 at 1:10 am
Unless someone else forces me to, I don't want to change my avatar. I was just asking, because it was mentioned in the other thread *and* I was told before,...
April 19, 2005 at 1:02 am
If I understand you correctly, you're talking about eMails containing picture attachments which should be loaded into a db, right?
Now, if so, I would write a small VB app utilizing...
April 18, 2005 at 8:21 am
Depending on what kind of calculations you perform on your data, MONEY might *not* be the best choice around. Addition and Subtraction is quite okay, however, it gets tricky when...
April 18, 2005 at 7:45 am
2: Anything by Ken Henderson
3: Sorry, no book but look around the site here
4: Database design for mere mortals be Michael J. Hernandez is a good introduction to...
April 18, 2005 at 6:34 am
Sorry about that.
You might have a look at UDF's to modularize your code. However, test this *very* carefully if they meet your performance...
April 18, 2005 at 6:12 am
Please avoid multi-posting:
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=5&messageid=175274
April 18, 2005 at 5:57 am
Viewing 15 posts - 526 through 540 (of 5,356 total)