Viewing 15 posts - 166 through 180 (of 992 total)
There's not really much of a practical difference between the two except that many tools you work with will consider the primary key to be "king". Certainly linking your...
January 31, 2008 at 9:27 pm
I'm with James except that I don't bother prefixing with sp, usp or anything π I have procedures such as
TC_Sheets_Get
which is for the theatre costing system to retrieve...
January 31, 2008 at 9:25 pm
These are my favourite kind of discussion. I'd be happy to say that 99% of SQL Server users probably couldn't have come up with either approach. The use...
January 31, 2008 at 9:15 pm
It will definitely be some sort of index rebuild. Another thing it could be is if you run a command similar to (but much larger in scope)
update myTable
set colA...
January 31, 2008 at 10:11 am
Please format your code π
SELECT
COUNT(tblConferences.Division) AS Total, tblConferences.Subdivision, tblConfAtt.ConfDate,tblConfAtt.CustomerID
FROM tblConfAtt
INNER JOIN tblConferences
ON tblConfAtt.Conference = tblConferences.Room AND
...
January 31, 2008 at 10:09 am
Are you seeing anything extra in the SQL Server log?
January 31, 2008 at 10:03 am
Unfortunately SQL 2k5's over clause is missing that little bit of magic present in the SQL standard and other SQL products. The full functionality is also not present in...
January 31, 2008 at 10:01 am
I have to agree with the naysayers unfortunately. It's great at the moment and really does seem to work (I haven't seen it fail yet either). I was...
January 31, 2008 at 4:33 am
I'm looking forward to the rest of the series. It's a nice departure from the usual (although still useful and definitely not mundane) stuff we all read on here.
I...
January 31, 2008 at 4:07 am
Unfortunately the hybrid car is one of those things where you can find plenty of information for and against their use - just to confuse the consumer. I think...
January 31, 2008 at 3:54 am
Hmm, I have to agree. That's a LOT to read and decipher.
Are you sure the source data's not changing? By how much are your summaries changing?
It...
January 30, 2008 at 4:02 am
Great article. I must admit that we use BLOBs to store data in MS SQL, but the BLOBs (which are documents) are stored in a separate (or many separate)...
January 30, 2008 at 2:03 am
Do a search for and downloads a product (there's a free version) called TOAD for Oracle. It makes Oracle a LOT easier to use and more familiar for us...
January 30, 2008 at 1:59 am
Good article - great discussion π When reading the article I thought "that makes sense". But the locking problems, coupled with the systems with which I'm associated not...
January 29, 2008 at 7:38 pm
I did a couple of subjects at university on coding supercomputers, etc. Memory management was always one of those things that could severely impact on the speed of your...
January 28, 2008 at 1:43 am
Viewing 15 posts - 166 through 180 (of 992 total)