Viewing 15 posts - 47,041 through 47,055 (of 49,552 total)
rbarryyoung (3/30/2008)
1. Value Subqueries: These just return a single value per row and they look like this: (Select...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
March 31, 2008 at 6:23 am
robertafricker (3/30/2008)
Hi NJ,(this is the second one I had)
USE Beerdrinkers
SELECT bar
FROM serves, likes
WHERE serves.beer = likes.beer
AND drinker = ‘Joe’
If I may make a minor correction...
SELECT bar
FROM serves INNER JOIN likes...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
March 31, 2008 at 6:16 am
Posting 6 identical messages is not necessary. It wastes people's time and fragments replies.
Many of us read all the forums.
Please do not reply to this thread, but direct comments to...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
March 31, 2008 at 6:12 am
Posting 6 identical messages is not necessary. It wastes people's time and fragments replies.
Many of us read all the forums.
Please don not reply to this thread, but direct comments to...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
March 31, 2008 at 6:11 am
Posting 6 identical messages is not necessary. It wastes people's time and fragments replies.
Many of us read all the forums.
Please don not reply to this thread, but direct comments to...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
March 31, 2008 at 6:11 am
Posting 6 identical messages is not necessary. It wastes people's time and fragments replies.
Many of us read all the forums.
Please do not reply to this thread, but direct comments to...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
March 31, 2008 at 6:10 am
Posting 6 identical messages is not necessary. It wastes people's time and fragments replies.
Many of us read all the forums.
Please don not reply to this thread, but direct comments to...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
March 31, 2008 at 6:10 am
In the properties of the maintenance plan you can set the plan to log to a text file. It will write far more detailed info than went into the job...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
March 31, 2008 at 5:48 am
OK. it doesn't look like you have the DB engine installed, just the workstation tools. Do you know what edition you tried to install? (Enterprise, standard, workgroup, developer)?
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
March 30, 2008 at 12:36 pm
Ok. Almost clear. From the looks of things, there's no need to create separate tables at all. Just one more thing....
Where does the email address come from that you're sending...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
March 30, 2008 at 12:33 pm
If I may suggest...
Read the article linked in Jeff's sig, then post the question again. It's probably simple, but I don't feel like guessing as to table structure and expected...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
March 30, 2008 at 12:24 pm
From what you've said, I would not suggest you consider a degree at the moment.
For the record, I have a B.SC and I'm currently studying for my M.Sc. so...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
March 30, 2008 at 12:03 pm
Maybe.
How many rows are in the table? What are the indexes on the table?
If there are no indexes, sql will do a table scan to find your rows. That means...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
March 29, 2008 at 1:12 pm
You can't restore a 2005 database onto a 2000 server. There's no downgrade option.
To install the DB engine, you need to get hold of the full 2005 installation.
What did you...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
March 29, 2008 at 12:54 pm
Depends.
If you're doing something like this, all will be rolled back
Begin transaction
set xact_abort on
update ...
update ....
update ....
commit transaction
If each update is within its own transaction (or if you're not explicitly...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
March 29, 2008 at 12:52 pm
Viewing 15 posts - 47,041 through 47,055 (of 49,552 total)