Viewing 15 posts - 58,801 through 58,815 (of 58,835 total)
Not sure but I think it may be the way that Crystal is using the view... I believe that it creates a different instance of the view for each instance that...
April 22, 2004 at 7:34 pm
Kokyan gave a good example of "Dynamic SQL"... just wanted to remind everyone that dynamic SQL can be quite a bit slower than "Static SQL" because it does not pre-form...
April 22, 2004 at 7:24 pm
It's a forum, not on-line help...
Anyway, use the -m parameter followed by the number of errors you wish to allow. Lookup BCP,Overview in...
April 22, 2004 at 7:20 pm
1. You need to assign a "table alias" to the SELECT in the FROM clause.
2. You need to use that table alias on all column names to the right of...
April 21, 2004 at 5:03 pm
Basically, @@Error only lasts for one successful line of code so by the time you get to the "SET @out_param = @@Error" chunk of code, @@Error has been reset to...
April 21, 2004 at 4:56 pm
Add the "-n" parameter to your command line to suppress both the prompts and the line numbering.
Recommend you use OSQL instead.
April 21, 2004 at 4:49 pm
Not sure if it uses the 'Sum of Product - Mod 10' method you were talking about but...
Have you tried the CHECKSUM function in SQL? It's in "Books on line".
--Jeff...
April 21, 2004 at 4:34 pm
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
Viewing 15 posts - 58,801 through 58,815 (of 58,835 total)