• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Another SQL question

DaShen

Lifer
INSERT INTO dbo.CHRONO
(SPN, DateActivity, DateEntry, Act_Type_Primary, Act_Type_Secondary, NxtRptDate, NxtRptTime, POI, Creator)
SELECT SPN, DateActivity, DateEntry, Act_Type_Primary, Act_Type_Secondary, NextRptDate, NxtRptTime, POI, Creator
FROM dbo.ChronoFileArchive
WHERE (NOT (Act_Type_Secondary IS NULL))

Act_Type_Secondary is a varchar of [8000] and there are over 200,000 rows.

It seems the string data wold be truncated, so it does not perform the Insertion.

I was given the go ahead to use the Row ID instead of the Time Stamp. Now I am trying to take the flat file and move it to a more constructed database. The procedure won't even run, although I know that the SQL statement is correct. Any workarounds on this problem. I am running this off of a test box, so resources are not a problem. Any ideas?
 
Back
Top