Viewing 15 posts - 21,151 through 21,165 (of 26,490 total)
You will need to import the data you need from the Sybase database to a temporary or staging table and then use that table in your function(s)/query(ies).
May 6, 2009 at 12:30 pm
Also, what table(s) does this view access: vWorkflowTransition?
I am basing my assumption that this is a view due to the naming convention used in the name.
May 6, 2009 at 12:25 pm
Hmm, backwards I should walk with my light sabre out...
May 6, 2009 at 12:10 pm
That's why I asked for more info. I didn't really feel comfortable giving an answer with so little info to really go on.
May 6, 2009 at 12:00 pm
Try this:
select
rwa_id,
'P'
from
leads_ce_work ce
left outer join common.dbo.acode ac
...
May 6, 2009 at 11:56 am
Alvin, congrats on figuring out what was needed. Of course, it won't make use of any indexes that may benefit the query if they exist. 😉
May 6, 2009 at 11:40 am
Still confused. You need to provide a better description of the problem and what you are trying to accomplish. Some sample tables (DDL to create), sample data (in...
May 6, 2009 at 11:29 am
For what it is worth, the following also returns the "correct" answer based on the original post:
create table #temp
(
week1 decimal(16,8),
week2 decimal(16,8),
week3 decimal(16,8),
gross decimal(16,8)
)
insert into #temp
select -9.12000000,-11.03000000,5.61690000,0
declare @a1 decimal(16,8),@a2 decimal(16,8),@a3 decimal(16,8);
update...
May 6, 2009 at 11:22 am
I refuse to post a link, but I really want to know what our favorite PhD candadate learned while in school for his current degrees.
I'm also curious how he manages...
May 6, 2009 at 11:14 am
karthikeyan (5/6/2009)
DECLARE @Fixed1 decimal(8,4), @Fixed2 decimal(8,4), @Fixed3 decimal(16,8);
SET @Fixed1 = 5444.32;
SET @Fixed2 = 12121.03; <-- Problem is here. decimal(8,4) means you only have room...
May 6, 2009 at 11:10 am
What does the date represent, the end of the reporting period? How does it equate to the start of the period? Using the dates in your original post,...
May 6, 2009 at 10:55 am
Looks like a permissions issue. You may not have the proper permissions to access the files where they reside.
May 6, 2009 at 10:53 am
First, if you are willing to spend a little money, instead of downloading SQL Server Express (free) you may want to purchase SQL Server Developer Edition for about $50.00 USD....
May 6, 2009 at 10:47 am
Viewing 15 posts - 21,151 through 21,165 (of 26,490 total)