Viewing 15 posts - 91 through 105 (of 111 total)
GilaMonster (8/17/2009)
I saw a case just today. Client's DBA role had been outsourced (to a local company).
Wouldn't that be like getting a contractor on-board? And I'm not sure...
August 17, 2009 at 10:04 am
Silverfox (8/17/2009)
August 17, 2009 at 10:01 am
This behavior really threw me out in cold for a while! After going through this thread I broke the dynamic sql in multi-part and it worked fine. Yes, my dynamic...
August 17, 2009 at 8:43 am
Got it!! :w00t:
I had to modify my query to include the absolute path of the SQL Server database. Somehow the "Initial Catalog" thing in the connection string doesn't seem to...
July 14, 2009 at 9:41 am
Phil Parkin (7/14/2009)
The error message specifically mentions SQL Native Client - making me wonder whether you tried to connect to Oracle using the wrong provider ...
Umm.. let me try to...
July 14, 2009 at 9:25 am
I assume you meant changing my OLEDB source type from Oracle to SQL Native Client. When I do that then the oracle query breaks with the following error:
[Alert values from...
July 14, 2009 at 9:00 am
It doesn't seem like you can use RAISERROR in a SELECT statement (though BOL doesn't say anything about it). Unless there is any constraint of doing it in one single...
June 22, 2009 at 7:23 am
I hope then that the code below is what you are looking for
create table #gi (statusCode varchar(6), statusDescription varchar(100), groupCode varchar(6))
create table #case (caseId int, statusCode varchar(6))
insert into #gi
select 'F',...
June 2, 2009 at 12:13 pm
vblllove (6/2/2009)
Hi I want to Export some Formated data to a supplier on XML Format as follows
I think the way you want to export is explained here[/url].
Did you preview your...
June 2, 2009 at 11:43 am
Paul Morris (6/2/2009)
I know it is difficult to work with someone that doesn't explain very well his needs due to lack of experience....
I'm pretty new to this forum as...
June 2, 2009 at 11:35 am
Paul Morris (6/1/2009)
I am looking to...
June 1, 2009 at 3:15 pm
I won't say this explains the entire situation to me, but lot better than the first post. 😉
Ok, here is what I understood, you have a "status code" table and...
June 1, 2009 at 1:09 pm
Can you provide table layout to give an idea how it looks like?
June 1, 2009 at 9:59 am
Thank you for your patience and responses, John.
You guessed right that I expect to see G's first. And if I put Type 1 in the row_number() order by clause then...
May 29, 2009 at 11:19 pm
Viewing 15 posts - 91 through 105 (of 111 total)