Viewing 15 posts - 9,421 through 9,435 (of 14,953 total)
There are some differences. For example, so far as I know, there isn't a JET driver for 64-bit SQL Server. At least, not built in. If, for...
May 29, 2009 at 11:11 am
Instead of the Where Exists, I'd probably do the whole thing as a join, either to an import table, or to the CSV using Openrowset, but it's the same concept....
May 29, 2009 at 10:57 am
XQuery is case-sensitive.
"Value" needs to be "value" (all lower-case), "Extension" needs to be "EXTENSION" in the value query, and so on.
Here's a working version:
select cast('1.5' as XML) as Extension
into #T;
--
select...
May 29, 2009 at 9:15 am
Why would you forbid a solution like Jack's? It's very standard, performs well, and is easy to build and maintain.
May 29, 2009 at 9:07 am
That's why I put "often" in there.
I've seen successful solutions that had IDs, and also a column indicating which instance of the database was the source. Made it a...
May 29, 2009 at 7:15 am
I like open and with published, pre-set standards for how to get a raise and all that. Takes the uncertainty out of it.
May 29, 2009 at 7:03 am
DougGifford (5/28/2009)
If the OP is using SQL Server Express there is a Maximum 4GB database size limitation.
Will this pose a problem in the future if the DB is going...
May 28, 2009 at 3:09 pm
sjsubscribe (5/28/2009)
rudy komacsar (5/28/2009)
As DBAs we act as the 'stewards' of data - we are not the owners of the data.
To gets us beyond the issues of ownership and stewardship,...
May 28, 2009 at 2:24 pm
Bob Hovious (5/28/2009)
Nope that would only add excitement to baseball if you were allowed to clock the 1st baseman in the ribs to make him drop the ball as he...
May 28, 2009 at 2:19 pm
Roy Ernest (5/28/2009)
I liked the thread about the table Status.... 😀
Both of them are about that same table. I liked it when the guy said the table was part...
May 28, 2009 at 2:18 pm
That's a table that someone built for you. It's not something any of us have access to.
You'll need to check if the table has any documentation at your company,...
May 28, 2009 at 2:14 pm
Right-click the table
Script Table as
CREATE to
Clipboard
Paste the results into a reply on this forum. We might be able to help if there's a foreign key on it or something...
May 28, 2009 at 2:12 pm
Bob Griffin (5/12/2009)
May 28, 2009 at 1:27 pm
Bob Hovious (5/28/2009)
May 28, 2009 at 1:17 pm
Lynn Pettis (5/28/2009)
PaulB (5/28/2009)
I personally don't like surrogate keys; when possible I prefer to use meaningful -natural keys.
I like using surrogate keys as a primary key, but I will also...
May 28, 2009 at 12:37 pm
Viewing 15 posts - 9,421 through 9,435 (of 14,953 total)