Viewing 15 posts - 196 through 210 (of 2,486 total)
Adam
Executing SET SHOWPLAN_TEXT ON will cause a text version of the execution plan to be generated. Just run it before your statement/procedure.
August 14, 2007 at 4:34 pm
Another option that avoids the sometimes, or maybe mosttimes, problems with SQL Mail is to build your own POP3 email reader. There are a number of examples at http://www.codeproject.com
August 14, 2007 at 4:28 pm
The BULK INSERT has a table lock option. No need to fiddle with table options which tend to be forgotten once set
http://msdn2.microsoft.com/en-us/library/aa225968(SQL.80).aspx
From the...
August 14, 2007 at 4:34 am
Ok, based on the query you provided a non-clustered index on card id won't help.
For the way you're explaining the updates, this is how I see it,
1) first return the...
August 14, 2007 at 4:30 am
My varchar column never changes
So why have the CardID column at all?
updates are done using the primary key but only after the cardid is acquired by its serial number
Why not...
August 13, 2007 at 11:52 pm
BULK INSERT is the fastest option for importing data into SQL Server. It has most of the options that are available for BCP.
August 13, 2007 at 7:20 am
faboudib
I'd like to see the table structure and query before recommending that you have a clustered index on a varchar column.
August 13, 2007 at 7:16 am
Jeff
No offense taken as I never thought there was offense meant
August 11, 2007 at 2:41 am
Jeff I thought you'd do the math a little better. It's ONLY 158GB
What are you using to produce the numbers you've given us?...
August 8, 2007 at 9:37 pm
Error seems pretty self explanatory. What login are you using?
How are you creating the publication? via the GUI or via script? If it's via script, can you supply the script?
...
August 8, 2007 at 6:21 am
BTW, DDL for table and indexes, along with query and text execution plan are most helpful in providing a complete picture
August 7, 2007 at 10:06 pm
There are no technical limitations on the number of concurrent processes in the Developer edition. If the server is used in anyway by a "production" process, then there is license...
August 7, 2007 at 10:02 pm
Kathy, are you using the standard FTP task that comes with DTS? I remember that ww.sqldts.com built an add-on task for FTP, can't remember it's full functionality, might be worth...
August 6, 2007 at 8:55 am
Huh ... silly me ... I usually just run sp_helpindex ...
August 6, 2007 at 8:44 am
Viewing 15 posts - 196 through 210 (of 2,486 total)