Viewing 15 posts - 2,956 through 2,970 (of 3,677 total)
I am fortunate in that I develop intranet applications and can use Windows Authentication.
This means that a Windows group is granted login priviledges to SQL Server and that group login...
January 11, 2005 at 8:34 am
If the values are arranged in a numerical order then TRIMMEAN ignores a specific number of values at either end of the list and then returns the AVERAGE of the...
January 11, 2005 at 8:29 am
It depends on what language I am working with and whether I can use ADO/ADO.NET.
If I am passing a web input or textarea box then providing I am assigning the...
January 9, 2005 at 3:31 pm
My first reaction to MySQL was that traditional databases cost money for a reason.
The more that I have used MySQL the more I find I like it although FK support,...
January 6, 2005 at 7:36 am
Short of spending a lot of time documenting use cases for your stats or training up you network admin I can't see any easy solution here.
I think it is a...
January 5, 2005 at 6:13 am
There used to be an independent SQL Server exam prep books that were quite detailed.
Having worked with an ORACLE developer he gained a grudging respect of SQL Server, mainly due...
December 29, 2004 at 3:13 pm
If you want to store time accurate to the minute then use SMALLDATETIME otherwise use DATETIME.
If the various locations are in the same country as the server then use the...
December 23, 2004 at 7:21 am
SELECT DC.CollectionName ,
MAX(CASE CA.AttributeType WHEN 1 THEN AttributeValue ELSE '' END) AS Attribute1Name ,
MAX(CASE CA.AttributeType WHEN 2 THEN AttributeValue ELSE '' END) AS Attribute2Name
FROM dbo.CataCollections as DC INNER JOIN dbo.CollectionAttributes AS...
December 23, 2004 at 1:25 am
A SmallDateTime field is accurate to the minute so setting it to GETDATE() will automatically truncate it for you.
December 23, 2004 at 1:21 am
Well its Christmas so surely its as good a time as any to contemplate the "Meaning of life"?
I've got the "Monty Python Sings" CD in my lap-top for when the...
December 17, 2004 at 3:08 am
Anything that comes through the post that isn't a bill or junk mail is something to get excited about.
December 17, 2004 at 1:54 am
Wasn't there a Monty Python sketch on this very subject refering to John Cleese as the comic mesiah?
For the younger programmers, Monty Python was a comedy team before the invention...
December 16, 2004 at 8:43 am
I have never seen a performance difference but from my point of view the separation of join conditions and selection conditions aids clarity to the code.
December 16, 2004 at 4:25 am
Basically all your tables relate on the accountId field.
So tblBorrowerAddress.AccountID = tblAccount.AccountID and tblAccount.AccountID = tblBorrower.AccountID
A human being will infer that tblBorrowerAddress can be linked to tblBorrower but a computer...
December 16, 2004 at 2:03 am
Put SET DATEFORMAT YMD at the beginning of your procedure
December 16, 2004 at 1:37 am
Viewing 15 posts - 2,956 through 2,970 (of 3,677 total)