Viewing 15 posts - 436 through 450 (of 599 total)
Attachments aren't allowed. You could copy and past a few lines from the file if you want.
June 8, 2006 at 9:40 am
Knut's solution will work of all the fields are qualified with quotes.
If they aren't, you have a couple of options (that come to my mind - there are probably many...
June 8, 2006 at 9:09 am
Have a look at this article as well as its links:
June 7, 2006 at 6:22 pm
update MyTable
set MyField = REPLACE(MyField,'"','')
Yes, you could do it in the DTS package as well. There are multiple ways of accomplishing this.
June 7, 2006 at 6:19 pm
Sybase is rather similar to MS SQL Server, so most of the cleanup you do in Sybase will only benefit you in your migration.
Here's a link to the online reference manuals:
June 6, 2006 at 5:16 pm
If you have done the first three, have you pinopinted troublesome query?
BY logging / checking, I mean have you tried setting up the proc with debug / logging info to...
June 6, 2006 at 4:04 pm
Does the query have any kind of looping? An unmet ending condition (data differences) would be one of my suspects for what you describe.
Have you looked at locking?
Have you run...
June 6, 2006 at 3:06 pm
Sounds like you're looking for SQL Server Agent.
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/adminsql/ad_automate_01et.asp
June 6, 2006 at 3:02 pm
Here's the BOL for Eager Spool:
http://msdn2.microsoft.com/en-us/library/ms190435.aspx
"The Eager Spool operator builds its spool file in an "eager" manner: when the spool's parent operator asks for the first row, the spool...
June 6, 2006 at 1:08 pm
You've answered your own question: "because the table isn't indexed"
That's your culprit.
Minimally, you can run the select with no locks, assuming you don't care about a "dirty" read.
SET TRANSACTION ISOLATION...
June 1, 2006 at 12:23 pm
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/tsqlref/ts_ca-co_5ell.asp
CP1 specifies code page 1252, for all other code pages the complete code page number is specified.
June 1, 2006 at 7:58 am
I'm a big fan of Diagnostic Manager (put out by Idera these days I believe...).
June 1, 2006 at 7:53 am
You are correct. There are security considerations with TRUNCATE:
"The minimum permission required is ALTER on table_name. TRUNCATE TABLE permissions default to the table owner, members of the sysadmin fixed server...
May 31, 2006 at 8:22 am
How are you "clearing" the table? If you use TRUNCATE, the identity will re-set to your original seed value.
May 31, 2006 at 7:52 am
You may want to take a look here:
May 29, 2006 at 12:11 pm
Viewing 15 posts - 436 through 450 (of 599 total)