Viewing 15 posts - 61 through 75 (of 327 total)
Just a suggestion to try, I can't tell if you tried something like this or not:
select tr.[GUID]as gid,[EP_NO],[NAME],
[CONTRACTOR_CODE],[CONTRACTOR_NAME],
[SUBCONTRACTOR_NAME],[PLANT_CD],[SKILLCODE],[WORK_AREA],
[DISCIPLINE],[PASSTYPE],[PRES_ADD],[PRES_VILLAGE],
[PRES_TALUKA],[PRES_DISTRICT],[PRES_TEHSIL],[PRES_CITY],
[PRES_STATE],[PRES_PIN],[PRES_TEL_NO],[FATHER_HUS_NAME],
[DT_BIRTH],[DT_JOIN],[EP_VALID_TILL],[LICENSE_NO],
[GENDER],[BLOOD_GROUP],[RELIGION_CD],[ID_MARK],[HEIGHT],
[DT_LEAVE],[COMMENT],[STATUS],tr.[ENROLLTIME] as EntTime,
tr.[OPERATORID] as OptID, [MODIFY_DT],[CONTRACTOR_TYPE],[WORKAREA_CATEGORY]
-------------------------- put the 'into' here --------------------------------- <<<<<<<<<<<<<<<<<<
INTO NEW_TABLE_NAME_HERE
--------------------------...
October 24, 2012 at 7:04 am
suba.sathyanathan 40131 (10/18/2012)
Information_Schema.Tables is a system view. It is available as part of all sql server databases. Kindly let me as to which version of sql server you are...
October 23, 2012 at 7:56 am
L' Eomot Inversé (10/19/2012)
When you referred to SQL Server not managing the size of tempdb correctly, I assumed you were complaining about SQL Server not managing the size correctly.
True! I...
October 19, 2012 at 1:55 pm
L' Eomot Inversé (10/19/2012)
that SQL Server doesn't correctly manage the size of tempdb to be either incorrect or at least...
October 19, 2012 at 9:31 am
Hugo Kornelis (10/19/2012)
Only (minor) issue - picking 6 out of 17 answer options is a task that appears daunting at first sight. The answer options were luckily...
October 19, 2012 at 6:48 am
Vegard Hagen (10/18/2012)
October 18, 2012 at 8:25 am
arthur.gimpel (10/15/2012)
patrickmcginnis59 (10/15/2012)
October 15, 2012 at 7:50 am
The posted code wasn't formatted very well so wasn't able to read it without significant editting and it wouldn't run either (I only tried selected snippets from it ot verify...
October 15, 2012 at 6:59 am
I reran the little vb snippet with op3's original 1000000 row test, and while it started returning rows, THIS time when I control-c'ed, no rows updated. I do realise that...
October 8, 2012 at 2:51 pm
This is an interesting one. I found some vb.net code that would read from a connection a row at a time and fed it the update statement. I control-c'ed after...
October 8, 2012 at 2:38 pm
jshahan (10/2/2012)
October 2, 2012 at 1:10 pm
jshahan (10/2/2012)
That makes sense to me. Actually makes enough sense that I can understand it instead of memorize it.Thanks again.
You're welcome and good luck!
October 2, 2012 at 12:47 pm
jshahan (10/2/2012)
Are you saying that the quotes function like escape characters and that handling of the escape characters is dependent on which clause they are in? EXEC wants...
October 2, 2012 at 12:38 pm
Viewing 15 posts - 61 through 75 (of 327 total)