Viewing 12 posts - 76 through 87 (of 87 total)
did you check my 2nd suggestion in my initial reply?
November 2, 2009 at 2:36 am
i had a similar issue, was a trigger causing the locks
November 2, 2009 at 2:34 am
how about this?
update distination
set [Column] = c.col
from (
select case when a.[Column] <> b.[Column] then a.Colum else b.[Column] end as col
from source a join destination b
on a.id=b.id) as c
November 2, 2009 at 2:29 am
your front end cannot connect to sql for some reason.
we need to check if sql is running, if it is, then we need to check if your login is valid.
once...
November 2, 2009 at 2:19 am
try this in your where statement
WHERE (CALLLOG.RecvdDate) >= cast(@start_date as datetime)
AND (CALLLOG.RecvdDate) <= cast(@end_date as datetime)
November 2, 2009 at 2:16 am
Your subquery is returning more than 1 row, and based on that, you want to update the lookup.
why not create a table with multiple columns for child, grandchild, etc and...
November 2, 2009 at 2:12 am
Hi,
This could have multiple causes
1. try connecting to sql to ssms with your user credentials
2. ensure the correct protocol is selected under SACM,i.e named pipes and tcp/ip
not sure what you...
November 2, 2009 at 2:06 am
wat about this?
create table tempstore(id int identity (1,1),
OrderID nchar(2),
OrderType nchar(3))
insert into tempstore(OrderID,OrderType)
select 'A', 'X' union
select 'B','Y'union
select'C','Z' union
select'D','YY' union
select'E','ZZ'
UPDATE Orders
SET...
November 2, 2009 at 2:00 am
hi there,
not too fimiliar with db2, but the principals should stand.
if your query is correct try testing your odbc connection. did you try and coonect with this via windows?
October 23, 2009 at 6:14 am
hi,
what are trying to do with your "iff" function?
October 23, 2009 at 3:46 am
Hi,
Not too clear on your question, but heres a possible solution.
1.Import text file to SQL
2.Create 3 variables, TotalRows, ValidatRows, InvalidRows
declare @ValidRows float
declare @InvalidRows float
Declare @TotalRows float
3. Assign values to variables...
October 23, 2009 at 3:33 am
Viewing 12 posts - 76 through 87 (of 87 total)