Viewing 15 posts - 16 through 30 (of 79 total)
Not sure if this will help you and Ive never tried it myself but atleast its something to look at:
sp_addlinkedserver [ @server = ] 'server'
...
April 14, 2002 at 1:37 pm
check out my article ASP - Reaping the benefits of SQL 2000's FOR XML clause.
http://www.sqlservercentral.com/columnists/lplatt/article4_1.asp
April 14, 2002 at 12:17 pm
Yes it is very possible and not too difficult to do what you have proposed.
A couple of notes:
1. the active X component that your are refering to is called...
April 14, 2002 at 10:55 am
can your in clause be expressed as a Sql statement or are the values derived from somewhere else?
April 10, 2002 at 9:23 pm
I will play with this some when I get a chance. Unfortunately I don't have my sql server at home set up to support xml templates. Probably slacking a...
April 10, 2002 at 8:44 pm
Is the COM module running in a sql job? If so try stoping the Sql Server Agent, upgrade the COM module then re-start Sql Server Agent
April 10, 2002 at 8:34 pm
You could get the info from the versionString property of the SqlServer object
Visual Basic ? Results from my sql server:
? objSqlServer.VersionString
Microsoft SQL Server 7.00 - 7.00.623 (Intel X86)
...
April 10, 2002 at 8:30 pm
Not that I know of. Before SQL2000 came out there was an ISAPI filter that ran on IIS server to provide the same functionality but I can't seem to...
April 8, 2002 at 7:48 pm
You can accomplish it doing full joins.
Create this table and enter the following data:
CREATE TABLE [test1] (
[rowid] [int] IDENTITY (1, 1) NOT NULL ,
[student] [int] NOT NULL ,
[Qid] [char] (3)...
April 4, 2002 at 6:51 am
Sql works on sets of data. You can only retrieve what you ask for. Once the data is retrieved thats it, Sql server does not remember that you...
March 28, 2002 at 10:17 pm
Sorry don't have any experience with updg yet but maybe you could run sql profiler and get a clue what is actually going on at the sql server side.
March 28, 2002 at 9:26 pm
There is no way to run a shape command in TSQL. In order to use the shape language you need to go through ADO, that is why you need two...
February 27, 2002 at 8:33 pm
select isnull(wildcard,product) from products p left outer join prod_lookup pl
on p.product like pl.wildcard+'%'
Table1 = products
Table2 = prod_lookup
February 25, 2002 at 9:35 pm
Glad you got things working. Sorry about the comment problem. Thats what happens when you try to add comments as an after thought instead of doing it while...
February 22, 2002 at 10:18 pm
Don't know why you would get that error. Just to verify please open an Ado connection and then print the version:
set dbConn=server.createobject("adodb.connection")
dbConn.Open "file Name=c:\code\cnLanWeb.udl" 'need to put your connection...
February 20, 2002 at 10:49 pm
Viewing 15 posts - 16 through 30 (of 79 total)