Viewing 15 posts - 11,401 through 11,415 (of 14,953 total)
I'd have to go with encryption at a level higher than the DB in most cases, hopefully all the way from the presentation layer back. That way, you're not...
January 22, 2009 at 12:20 pm
select CONVERT(VARCHAR(10),METER_DATA_TIMESTAMP,112) as Date,
AVG(meter_data_value) as KWAVG,
Max(METER_DATA_VALUE) AS KWMAX,
Min(METER_DATA_VALUE) AS...
January 22, 2009 at 12:05 pm
There are plenty of tools that can be useful to a database administrator, even if you're not also a T-SQL dev, or whatever else. Redgate has an ad at...
January 22, 2009 at 12:04 pm
Having columns from the second table in the Where clause effectively turns an outer join into an inner. Move that part to the Join, instead of the Where, and...
January 22, 2009 at 11:58 am
You'll have to set up the regular user account to access the server. If I'm understanding your post correctly.
January 22, 2009 at 11:57 am
Jeff Moden (1/22/2009)
Also, be real careful with ISDATE... the following will return a "1" as will many other things...SELECT ISDATE('2008')
So will most numbers. If you have to protect against...
January 22, 2009 at 11:55 am
As an addendum, zip-codes.com and usps.com have all kinds of data and tools for Zip code lookup, rules on Zip codes, etc.
January 22, 2009 at 10:06 am
Jeff Moden (1/22/2009)
ALZDBA (1/22/2009)
Jeff Moden (1/21/2009)
January 22, 2009 at 10:01 am
Get rid of the conversion inside the IsDate. That'll give you errors.
January 22, 2009 at 9:46 am
Zip-code prefixes are state-specific. Can't span states. Lots of them span counties, but they don't span states. Even cities that span state-lines, have different Zip codes the...
January 22, 2009 at 9:45 am
In that (semi-valid) test, the sub-query definitely won.
January 22, 2009 at 9:30 am
I'd still go with a single job. Add a step in between that checks the end-time of step 3 (currently job 3), and continues to step 4 depending on...
January 22, 2009 at 9:28 am
On the subject of risk coming from not knowing what you're doing, I'll have to go with "it depends" on that one.
Yes, not knowing what you're doing definitely increases risk....
January 22, 2009 at 9:23 am
I have to disagree with the comment about not involving users in usability design. I've seen both ends of that spectrum, and the one that involved users a lot...
January 22, 2009 at 9:16 am
The way I usually do that is to put the steps for the dependent jobs into the first job and set the "On Success" and "On Failure" characteristics to get...
January 22, 2009 at 8:58 am
Viewing 15 posts - 11,401 through 11,415 (of 14,953 total)