Viewing 15 posts - 1,111 through 1,125 (of 1,156 total)
If you look under your linked servers and the database name is default you should query the linked server as such. [linked server]..[schema]., as SQL Server will know to...
November 12, 2007 at 2:56 pm
From my experience it may help by using skipping the database name in the four part name. For example:
[LinkedServer]..[Schema].[Table]
November 12, 2007 at 7:55 am
Jason,
I achieved the same results as you, but they seemed skewed. I dug a little deeper and realized that you created a cluster index on your tally table, which...
November 8, 2007 at 3:16 pm
Is this what you are looking for?
declare @test-2 table
(
[dayofyear] datetime,
dailytotals int
)
insert into @test-2
select '01-01-2007', 01 union all
select '01-01-2007', 05 union all
select '01-01-2007', 10 union all
select '01-02-2007', 28 union all
select '01-03-2007',...
November 8, 2007 at 11:02 am
Is the table name and Column uppercase on the Oracle server? These should match the results of your sp_tables_ex @table_server=CUSTOMERLINK, @table_schema='CUSTOMER1' command.
Have a look at these two articles:
http://support.microsoft.com/default.aspx?scid=kb;EN-US;280106
November 8, 2007 at 10:47 am
Jason,
Which script from PW did you compare to yours, the CTE or the subquery one?
November 8, 2007 at 10:04 am
Does anyone know if Oracle 9i has data access tools for a 64 bit server. I am running into this vary issue; however, I cannot find any 64 bit...
November 8, 2007 at 9:19 am
Yeah, I stopped and thought about it and a light went off :hehe:
November 8, 2007 at 8:47 am
Great solution Jason. 😉
The original specification required that the data be in a not incrmental format. For example, if A11 has 2 then it should be displayed as
1...
November 8, 2007 at 8:36 am
Thanks guys for the post :D. I will take a look at the suggested methods. Lynn, per your request, I am attaching a sample of the text file....
November 7, 2007 at 10:17 am
Yeah. XQuery really get its power from querying and modifying XML. This is just a method for getting data from xml into SQL Server. You will note...
November 6, 2007 at 11:34 am
Is this even possible?
Thanks,
Adam
November 5, 2007 at 9:11 am
Yes, It actually says "total record - Last record on file", before the second set of data starts.
the second set of data is actually meta data. It sums up...
November 2, 2007 at 11:06 pm
Viewing 15 posts - 1,111 through 1,125 (of 1,156 total)