Viewing 15 posts - 106 through 120 (of 241 total)
Strictly for what it's worth: I program in the "paranoid" style. That is, trust no inputs, trust no database contents, trust no one, trust nothing. As a result, my procedures...
August 10, 2005 at 8:37 am
Should you be testing for a returned NULL from the function?
August 10, 2005 at 8:13 am
You can simulate global variables by declaring a global cursor that will be visible to all processes under the purview of your report. You can then test the existence of...
August 10, 2005 at 7:38 am
You can use a CROSS JOIN on the table for which you want all rows returned.
August 10, 2005 at 7:21 am
If you're restoring from backups, you will be overwriting all database objects in the development database. You'll need to keep any dev table definition changes, procedures, functions, etc. that you...
August 9, 2005 at 8:22 am
My two cents: It's relative to a lot of things, including whether your DBMS is busy busy busy, or whether it sits there bored all day like the Maytag repairman. ...
August 8, 2005 at 3:05 pm
/*
||=======================================================
|| No warranties. Use at own risk. This is intended to
|| help; if you find it unhelpful, please discard...
||
|| The @filename variable...
August 8, 2005 at 12:17 pm
SELECT IDENTITY (INT, 1, 1) seq, first_name INTO #cust2 FROM customers
SELECT * FROM #cust2 ORDER BY seq
Not efficient, but effective.
August 8, 2005 at 9:42 am
Maybe we've been dealing with the wrong vendors.
August 8, 2005 at 8:38 am
From what I've been seeing in recent years, the industry trend is moving away from using stored procedures. This is not necessarily due to simple ignorance on how stored procedures...
August 8, 2005 at 8:18 am
Sorry, I missed the comment where you specified you weren't using the default port setting. No experience, there.
August 4, 2005 at 12:19 pm
> If you're a public corp I'm sure it would violate Sarbanes Oxley standards.
I don't even know what Sore Ben's Oxnard is, if it isn't a town on the...
August 4, 2005 at 12:12 pm
I'm surprised this one didn't work for you; it works fine for me:
OSQL -Usqluser -Ppassword -Sip
You shouldn't need the port.
Can you ping the IP?
August 4, 2005 at 9:36 am
Let's assume all you need is a test area, with current database structures and a reasonably fresh data snapshot. If this assumption is wrong -- if you need up to the minute...
August 4, 2005 at 9:21 am
Viewing 15 posts - 106 through 120 (of 241 total)