Viewing 15 posts - 46 through 60 (of 83 total)
That is the problem. I have tried and I just get the same error.
September 17, 2008 at 10:45 am
This is what the code is turn out to be:
SELECT
t1.PrimaryCustID,
t1.PrimarySSN
FROM CBDTransposeData t1,
...
September 17, 2008 at 10:02 am
I think that will work except for a small issue with a conversion. In my actual table, the ID column is a CHAR(9)
it actually holds SSN without the dashes. I...
September 17, 2008 at 9:26 am
That's not quite what I am after but close. The problem with this is if I have the following record:
Custid id
1000 ...
September 17, 2008 at 8:00 am
Mark, you nailed it right on the head. Thanks a lot.
September 17, 2008 at 7:41 am
This sounds really close. But let me get a fuller record set for you.
CustomerID TestID
1 ...
September 16, 2008 at 6:51 am
Thinks for the reply but I solved the issue by using ROUND() instead of CAST.
September 15, 2008 at 4:12 pm
This is the full statement:
SELECT d.customer_id, d.deal_id, d.delivery_date, d.bookvalue, d.payoff, d.equity, d.inventory_id, d.delivery_id,
d.payoff_date, d.dealer_id, d.modelyear, d.make, d.model, d.style, d.vehnew, d.vehclass,t.salesman_employee_id,
t.fi_manager_employee_id, t.cdr_id, t.sales_manager_employee_id, t.secondsales_employee_id, t.department_id,
t.sales_mgr2_employee_id, d.snapshot_id, dl.deal_type, dl.lender_id,...
September 12, 2008 at 12:14 pm
What about doing multiples JOINS to the same table:
Such as
LEFT OUTER JOIN dbo.employee s1 WITH (NOLOCK) ON (s1.employee_id = t.salesman_employee_id)
LEFT OUTER JOIN dbo.employee s2 WITH (NOLOCK) ON (s2.employee_id...
September 12, 2008 at 9:33 am
Do you know if Microsoft has any KB on this issue. I just know that is what is going to be asked.
September 10, 2008 at 2:04 pm
Would using NOLOCKS be a underlying cause for this?
September 10, 2008 at 1:32 pm
I found the table that is indicated in the objecid and it contains Text datatype. I know that this is a blob field and have read somewhere this could be...
September 10, 2008 at 1:26 pm
Also how would I find which table is being effected? I can't run DBCC CheckDB because this DB is 689GB and it would bring it to its knees.
September 10, 2008 at 12:55 pm
OK, it poped again today:
Page (1:69724084), slot 5 for text, ntext, or image node does not exist..
I ran the following command but can't dechiper the contents:
DBCC TRACEON (3604);
DBCC PAGE ('ProMaxOnline',1,69724084,1)
PAGE:...
September 10, 2008 at 12:33 pm
Viewing 15 posts - 46 through 60 (of 83 total)