Viewing 15 posts - 58,846 through 58,860 (of 58,873 total)
It's a bug and it's in BCP as well as bulk insert. The only time the "First Row" option works correctly is when the rows to be ignored, the first...
April 20, 2004 at 6:21 am
The "-c" parameter, as you are probably aware, uses the CHAR format. What you might not know is that it adds the "newline" character as well. Hex "0D" is a...
April 12, 2004 at 10:56 pm
Lookup "hierarchical information" in Books on Line for an example. Has a bug in it but shouldn't be hard for you to find.
--Jeff Moden
April 12, 2004 at 10:41 pm
Kind'a what I thought... Thanks for the quick reply, Gary!
March 27, 2004 at 10:01 am
It's been my unpleasant experience that the production server will usually be much more active than the development server. You could be having a problem with wait-locks from other processes...
March 25, 2004 at 8:27 pm
Apologies for disagreeing with the masters...
Just changing the "if exists" to tempdb (as previously posted) will NOT detect or delete a temp table...
March 25, 2004 at 7:54 pm
Not real sure but I think if you have "GO" anywhere in your script, you need to set nocount to on after the "GO". Of course, if you don't have...
March 25, 2004 at 7:34 pm
Actually... there is a way if you want to generate the scripts for ALL the objects in a database. Check out the following URL...
March 25, 2004 at 7:28 pm
I'm confused... wouldn't it just be a lot easier to put all of the companies' information in a single table with a CompanyID column? Isn't that what 3rd normal form...
March 16, 2004 at 10:27 pm
Using Jonathon's example...
SELECT DISTINCT a.Col + b.Col
FROM Table a JOIN Table b ON a.Col <= b.Col
March 14, 2004 at 8:44 pm
Before it get's much more complicated, perhaps you should look into OLAP Services which comes free with MS-SQL... OLAP (online analytical processing) is on of the "other" things on your...
March 14, 2004 at 8:35 pm
March 4, 2004 at 9:59 pm
All well and good...
But the "poster" said that he wanted to do this as a VIEW! I asked the question a while back, "How...
March 3, 2004 at 5:28 pm
Viewing 15 posts - 58,846 through 58,860 (of 58,873 total)