Viewing 15 posts - 5,671 through 5,685 (of 6,486 total)
Philip Horan (11/27/2007)
I was leaning towards a 2 node cluster (as SQL 2005 standard supports).
I have requested a SQL consultant configure due to my inexperience,...
November 27, 2007 at 3:17 pm
alain_smithers (11/27/2007)If we're talking about referencing "lookup" or "type" tables, where the number of records is in the tens or even hundreds, DRI should be a no brainer. On the...
November 27, 2007 at 2:45 pm
If you were on 2005, I'd suggest the EXCEPT clause:
select * from 1
EXCEPT
select * from 2
of course - you're going to have to do...
November 27, 2007 at 2:28 pm
Larry Huisingh (11/27/2007)
November 27, 2007 at 2:22 pm
Jeff Moden (11/27/2007)
Doug Wittich (11/27/2007)
November 27, 2007 at 2:17 pm
Michael Earl (11/27/2007)
Clustering is generally more expensive. The OS and SQL licensing requirements are higher. Mirroring allows you to use a lesser server for your failover server (if...
November 27, 2007 at 2:06 pm
TheSQLGuru (11/26/2007)
Hey, what the heck are you doing playing on...
November 26, 2007 at 1:12 pm
Jeff Moden (11/22/2007)
Output should be:
'80 98439 9991 997 -50.000' should be Type = 80 Code = 98439
'0000058916 00000074000039708' should be Type = NULL Code = NULL
'0000058916 00000074000039708' should...
November 26, 2007 at 12:33 pm
Jeff Moden (11/26/2007)
One of the questions I ask on interviews is "Do you ever just play with or do experiments with SQL just to see what you can do?"
...to which...
November 26, 2007 at 12:25 pm
Jeff Moden (11/22/2007)
November 26, 2007 at 12:12 pm
Steve Jones - Editor (11/26/2007)
Turn it off: http://blogs.msdn.com/sqlserverstorageengine/archive/2007/03/28/turn-auto-shrink-off.aspxIt could cause blocking, but it's a bad idea.
Agreed. while it might be okay to occasionally shrink the log files if something...
November 26, 2007 at 12:07 pm
.NET syntax for replace is
<name of string object>.REPLACE("old value", "new value")
So you want
Dim strS As String
strS = txtName.Text.Trim.ToUpper
strS.Replace("'", "''")
November 26, 2007 at 11:55 am
pvt, unpvt, p and p2 are (admittedly) ugly, but short, aliases for the various sub-queries that syntax creates. It does make it a bit harder to read, but I...
November 26, 2007 at 11:42 am
Jeff Moden (11/26/2007)
3 rd normal form
(or)
What's the database for?
What's going to be stored in it, for how long and why?
Who's going to be using this and how?
(or)
both
Both... you cannot...
November 26, 2007 at 11:22 am
if you replace this line in the ORIGINAL code I posted
SELECT @SQLBody = ISNULL(@SQLBody+'],[','[') +rtrim(convert(varchar,[run date],112))
FROM testsvcs --also replace here with your table name
with....
SELECT @SQLBody = ISNULL(@SQLBody+'],[','[') +rtrim(convert(varchar,[run...
November 26, 2007 at 11:07 am
Viewing 15 posts - 5,671 through 5,685 (of 6,486 total)