It's resolved, but I don't think I did it. :) The two things that I think might have fixed it are:
1) I switched to basic authentication on the development site at first, which was a good enough workaround for a while, but then I had other problems with win2K clients using the development...
I've got a single intranet server running IIS5, with the production site on port 80 and the development site on port 81. I'm generally the only one using the dev site, so assigning a different port number seemed like a simple way to implement a separate development site. Both sites depend...
I'm trying to add appointments to a public calendar folder from ASP for an intranet application, but the web server I'm using (IIS 5) is not also the company's Exchange (2000) server, so I don't have access to CDO for Exchange 2000 from the ASP pages.
1) Is it possible to install CDOEX on the...
I don't know of any easy way for sql server to send a message to a vb app.
I would have your trigger(s) update a single "last updated datetime" value in a table somewhere, and then have your app check this value periodically to see if its last refresh is stale.
I'm not sure what you're using for a front end, but if it can use OLEDB you can use the MSDataShape provider to return a hierarchical recordset, in which certain fields in the parent recordset are actually sub-recordsets themselves. Here's a VB/ADO example from the MSDN help that uses the pubs...
Thanks Terry. Also, I think I had it backwards--after reading the article you suggested and others it looks like the first syntax in my original post (using the JOIN keyword) is ANSI style. Thanks for straightening me out!
I typically use the JOIN keyword when joining tables, e.g.:
SELECT [...]
FROM Orders o
INNER JOIN OrderStatus os ON o.OrderStatusId = os.Id
WHERE o.Id = 5
But lately I've been seeing (esp. in Books Online) syntax like:
SELECT [...]
FROM Orders o, OrderStatus os
WHERE o.OrderStatusId = os.Id...
If you're talking about checking within a single project, you can just click the Add Files button in VSS Explorer. The Add Files dialog only shows files from the project's working directory that aren't yet included in the project.
Unfortunately I don't know of a way to scan several projects...
Here's a simple, and I think novel, method I came up with recently to deal with the issue of maintaining a development version of a website, while leaving the working production version intact until changes in development have been tested and are ready for rollout. It involves sharing the files...
I was originally using TCP/IP. Just a little while ago I created a new alias to the same server using named pipes as the protocol (wasn't sure if this would work over the VPN, but it did), which has shortened the login time just enough so that QA will connect without timing out. It still takes...
Some extra information:
Both server & client are running win2K professional, and SQL version is 2000. VPN is win2k as well. Also, although login times have always been longish and sometimes have taken 2-3 tries for success, only today has it gotten to the point where i could not connect at all...
I'm using a VPN connection to develop and administer a SQL server database. When i connect using EM, the login process takes abnormally long (~20-30 seconds). This is only a minor annoyance in EM, but in query analyzer, even though i've set the login timeout to 30 seconds, the login attempt...
I believe that instead of just redirecting to the newacct3 page with this line:
> Response.Redirect "newacct3.asp"
You need to be submitting the form you've just created. You can do this by Response.Write-ing a snippet of javascript like the following:
<SCRIPT>
<!--...
Apparently the DDFs already in place were ok, because the Pervasive ODBC driver is working just fine for my ASP pages. Since I am in fact just writing fairly simple reporting pages, and also since in the next few months we'll be upgrading to the current version of Solomon IV which uses a SQL...
First let me apologize if this is posted in the wrong place. I'm trying to access my company's accounting data from both a VB app and ASP pages, and our accounting package is Solomon IV v2.06, which uses Scalable SQL, which I've found has some connection (?) to btrieve and/or pervasive.SQL.
In...
I'm getting the "Unable to open web project X. There is no server on port 80 at 'nnn.nnn.nnn.nnn' when trying to open a file on that server or create a new project. I'm trying the work-from-home thing connecting to the LAN at work over VPN, and was having no trouble until I installed a...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.