Viewing 13 posts - 1 through 13 (of 13 total)
wow thanks all for the help!
November 9, 2010 at 9:42 am
one last question, do you know how to use SP_HELPTEXT, say I want to get the content of a stored procedure in ServerB by running it in ServerA?
i tried SP_HELPTEXT...
November 9, 2010 at 7:19 am
thanks muthukkumaran..
i tried this SELECT * FROM ServerB.master.dbo.sysdatabases
it worked! 🙂
November 9, 2010 at 7:10 am
I already have a linked server. I just don't know how the list of Server B's databases. 🙂
Executing sp_databases in Server A returns only the databases of Server A.
November 9, 2010 at 6:50 am
Parthi,
Running the query below in Server A gives me an "Invalid Object Name" error...:-)
SELECT * FROM ServerB.sysobjects
November 9, 2010 at 6:48 am
Hi parthi,
Upon checking, we already have a linked server for Server B, that's why I can query successfully from Server B. My apologies.
So, my question now is, how can I...
November 9, 2010 at 6:32 am
thanks for the immediate response! 🙂
actually we're not allowed to create a linked server. 🙁 but i can execute a query successfully in Server A. This query runs successfully when...
November 9, 2010 at 6:03 am
Ok..Don't be sorry dude.. In fact u tried to help me...thanks for that. Ok, i'll try the bcp command. Thanks again! 😀
May 1, 2009 at 10:03 pm
Cool. Thanks for that. Btw, the BCP that you gave me, should I run it in SQL QA? 😀
April 30, 2009 at 8:50 pm
TYPE does not exist also in SQL 2000. But thanks for the help. :D. I'll take a look at the BOL and try to apply it on my query. I'll...
April 29, 2009 at 5:14 pm
hmm i'm using SQL 2000. I think PATH is not recognized. Btw, do you know any way on how to put this in a file? Let's say C:\Sample.xml? Thanks.
April 29, 2009 at 3:23 am
Ok. Here is the sample data that I'm trying to display in the XML.
USE pubs
SELECT TOP 15
ti.type, a.au_lname + ' ' + a.au_fname as Author,
a.phone, a.address, a.city,
ti.title_id, ti.title, ti.price
FROM...
April 28, 2009 at 6:06 pm
Ok. Thanks for that. I tried it, but the tags seemed disorganized. Btw, I used BCP to write the XML file (the problem is, I got an error and the...
April 28, 2009 at 6:31 am
Viewing 13 posts - 1 through 13 (of 13 total)