Viewing 15 posts - 16 through 30 (of 31 total)
Great suggestion
This is very possible now that I think of it. I'm converting a database that gets its feeds from another database. In the course of the conversion,...
September 21, 2006 at 2:47 pm
Both are varchar(15)
William
September 21, 2006 at 1:17 pm
Hi All:
I seemed to start an interesting thread with all kinds of great information. The problem was solved with the use of several inputs. This is what seemed...
September 18, 2006 at 9:22 am
Thanks Sreejith,
I'll give this a try and let you all know how it works
William
September 14, 2006 at 12:23 pm
Hi Nole
My error, I copied the wrong SQL. The SQL is:
select * into daily_transactions_hist
from from daily_transactions
where transactiondate < dateadd(d, -360, getdate())
-- and daily_transactions.transactionid daily_transactions_hist.transactionid
Thanks
William
September 14, 2006 at 11:57 am
Fred, Mike, and Ram
Using "[dbo].[Daily_transactions.hist]" work just fine. Thanks Ram
Mike, I'll take your advise in the future and not use "."'s in table naming.
Thanks soo much, it was driving...
September 12, 2006 at 9:00 am
Hi John
Nope, the database name is "Immedia_Billing" and I've made sure that I'm in that database while attempting to drop the "Daily_Transactions.hist" table.
Thanks
William
September 12, 2006 at 8:50 am
it is the same server and same database. Maybe your point is well taken and I really don't need to use the Identity on the history table, as the...
September 11, 2006 at 2:21 pm
Hi All:
Thanks for your help. This is what I came up with that sems to work well
William
drop table #temp
CREATE TABLE #temp (rowid int,textcol ntext)
INSERT INTO #temp values...
August 15, 2006 at 11:53 am
Seems that should work, however returning this error when running this:
UPDATE bignotes
SET bignote = REPLACE(REPLACE(bignote, CHAR(10), '|'), CHAR(13), '')
Msg 8116, Level 16, State 1, Line 4
Argument data type text is...
August 10, 2006 at 4:55 pm
Thank you all for your help and assistance. It worked out GREAT ;-))
Bill
August 3, 2006 at 10:59 am
Thank you all. This list is great!
Bill
August 3, 2006 at 8:31 am
I forgot to supply the ERROR message
Column 'C.Task_Id' is invalid in the select list because it is not contained in either an aggregate function or the GROUP BY clause.
Thanks
Bill
August 1, 2006 at 3:13 pm
Within the program I'm doing the following when the error happens:
msgbox "Problem reading tablename" & err.number & err.description
full output reads as follows:
"Problem reading Subscritions table" -2147467259[DBNETLIB]
...
July 6, 2006 at 9:46 am
Viewing 15 posts - 16 through 30 (of 31 total)