Viewing 9 posts - 1 through 9 (of 9 total)
Lowell,
On the Job Step Properties, I am specifying the user database. The SQL is reading (unqualified) tables in the user database and inserts into a table that's in another...
February 7, 2011 at 3:25 pm
Thanks Noel.
This worked just great:
DBCC UPDATEUSAGE(0) WITH COUNT_ROWS
March 13, 2006 at 10:47 am
Thanks Jo.
I'll stick with select count(*) when I need to know the real time row count.
I tried "UPDATE STATISTICS censusdatageneric with FULLSCAN" and I tried simply updating one of the...
March 13, 2006 at 8:56 am
Thanks govinn and Noel. I now see how string manipulation will help.
Best Regards,
rnpatter
August 16, 2005 at 9:53 am
govinn:
Thanks. I think I'm getting closer.
But, the strings I want to convert will ultimately come from a table where they reside in a CHAR column without the space. So, I still...
August 16, 2005 at 9:15 am
Yes, my login was assigned to the System Administrators server role on the test server. That was the difference.
Thanks.
September 10, 2004 at 7:35 am
How about just pushing the table into another temp table and use that:
Insert #NewTempWebNotes (........) SELECT CC025_ORG_CODE, CC025_EXT_ACCT_CODE, CC025_NOTE_CLASS, CC025_PROD_CODE, max(Note_text), max(HTML_text)
FROM #TEMP_WEB_NOTES
GROUP BY CC025_ORG_CODE, CC025_EXT_ACCT_CODE, CC025_NOTE_CLASS, CC025_PROD_CODE
September 9, 2004 at 2:57 pm
Thanks for the assist Frank. This also seems to work ok: DECLARE @oldtable sysname SET @oldtable = (select a.name from sysobjects b inner join sysobjects a on (a.id...
February 23, 2004 at 7:16 am
Viewing 9 posts - 1 through 9 (of 9 total)