Find And Replace "*" In .mdb

A new client gave me a .prn file to convert to an Access .mdb file for use on his site. Don't ask why, but he insists this is how he delivered updates to his previous source. The conversion was mostly successful, but I ended up with a lot of stray asterisks (*) mixed in with the text in a lot of the records.

I tried to do a simple find and replace, but the * character is, of course, a wildcard character. When I tried to search for it, Access returned everything as a result. There's thousands of records, so obviously I don't want to do this by hand.

Even coding an .asp page to update the records seems like more work than this problem warrants. I'll probably export to a .txt file and do a find and replace there and then re-import, but I'm curious if anyone else has had this problem. Is there an easy way to search for (and replace) the asterisk character in an Access file?

View Replies


ADVERTISEMENT

Find And Replace

I am not sure if this is a question for this forum or the IIS forum but here goes. I have a dedicated server on which I am hosting about 80 websites at the moment, all of which have been created by copying a template site. All of these sites have an identical structure and are located in the same directory on the server, C:Inetpubvhosts. Several times when I have needed to make an adjustment to the sites I have to go into the remote desktop connection to the server and go site by site, copying and pasting files. For example, as each site has the same pages, ie., map.asp, sometimes I make a change to that page and have to copy it to every site. Could I write some sort of script using the FSO and execute it from one site and have it loop through each site on the server making the neccessary change(s)?

View Replies View Related

Find And Replace URL

I'm working on something at the moment which pulls through a url to another page if it exists. I've got that bit working.

The bit I don't know how to do (real asp beginner here) is to check if the url has http:// in it, and if it has, remove it.

View Replies View Related

Find And Replace & For Sql Statment

i have a qs variable that has a & and i need to query the db, what do i replace the & with to query my data correctly?

View Replies View Related

Find And Replace The Variables

currently i'm working on a template-system. variables can be used in the form of {variable} and there even are some functions available like: [if(condition, statement-if-true, statement-if-false)]

this all relies on regular expressions. to find and replace the variables i use the following snippet:

set reo = new regexp
with reo
.pattern = "{.*}"
.ignorecase = true
.global = true
end with

View Replies View Related

Regular Expression :: Find And Replace

I am new to reg expressions and would like to write a regex for a .html page I am working. I want the regex to find every http link (<a href= ) that contains .org. Once it finds every link that contains .org I want to then remove ( exit.asp?url= ) that precedes it as well as add the attribute ( target="_blank" ) to the (<a href=) tag.

This basically will find all instances where I am calling my .asp page that lets the user know they are exiting the main site for an outside source and eliminate this page as long as the link they are clicking is within the original site. Otherwise I call my exit.asp page which notifies the user they are leaving.

Example:

Look for this type of tag (one where the link contains .org):
<a href="exit.asp?url=http://myorgwebsite.org/myorg"> Link 1</a>

Replace with this (removes the "exit.asp?url=", but adds target="_blank" attribute):
<a href="http://myorgwebsite.org/myorg" target="_blank"> Link 1</a>

View Replies View Related

Replace Function Not Replacing What I Tell It To Replace

If I replace "a" with "b", and then I replace "b" with "a", shouldn't I get the same result? That is what I am trying to encode and decode with Replace() function, but it is giving me different things when I replace and replace again. Here is what I am talking about: Code:

View Replies View Related

Cant Find Folder!

However, when i opened a page on my pc the database string was:

DBFolder = path & "..mysqldataformuladata

I cant find the folder in question. Even when ftping.

Any ideas where is could be lurking?

View Replies View Related

Cannot Find DWG Files

I am trying to locate a file using the following code

Set objXMLHTTP = Server.CreateObject("MSXML2.ServerXMLHTTP")

strURL = "http://server/ApprovedAutoCAD/140-00007-01.dwg"
objXMLHTTP.Open "GET", strURL, False, "login", "password"
objXMLHTTP.Send

strReturn = objXMLHTTP.status

I get a 404 status back indicating that the file is not found, which is incorrect. I am able to locate XLS and DOC files on the same directory. Any ideas why I cannot find a DWG (Drawing) file?

View Replies View Related

Could Not Find Path

if i use the physical path where the database is located then my code works fine
such as ("e:folderabc.mdb")

but when i use the server.mappath("abc.mdb") , i get error

View Replies View Related

Can't Find End Statement

The dreaded missing end statement
I need another set of eyes mine are about to cross.

My Error

Microsoft VBScript compilation error '800a03f6'

Expected 'End'

calendar.asp, line 289

My code:

View Replies View Related

Find Performance

We have several pages that are running very slow, is there any way to
identify which pages are taking the longest to process?

View Replies View Related

How Can I Find What Value Is In My Variable?

At first glance, the question in the subject line seems way too easy. But I
am finding some situations in my app where the value in a variable is some
sort of blank-like value, such as Null or "&nbsp;" or "", but I cannot tell
which.

Of course, in order to find out the value, I did a response.write, and added
a nonsense word afterward, to help make sure it is writing it out for me.

First, I tried to check for null: Code:

View Replies View Related

Best Way To Find <> NULL

How do I go about testing to see if a value is not equal to NULL? isNULL provides the opposite functionality, but all my attempts at the former return a FALSE value.

View Replies View Related

Find Referer

I want to know how to find out who is sending visitors to my site. So i obviusly need to find out who a visitors referer is.

I took a guess and thought that this is what I should use:

request.ServerVariables("HTTP_REFERER")

But that does not return anything. Any ideas guys?

View Replies View Related

Using The Find Method

Based on what the user selects in a combo box I need to find the value from another column in the same record. This is what I am using:

rsPrice.movefirst
rsPrice.Find "Component='Desktop'"
If (rstPrice.BOF = True) or (rstPrice.EOF = True) Then
response.write("The Price for the Component Not Found")

else
curPrice =rsPrice("Score")
End If

I keep getting an error messages:

Microsoft OLE DB Provider for SQL Server (0x80040E29) Rowset does not support scrolling backward.

View Replies View Related

Find Quoteint In Asp

can u tell me how to find the quoteint in asp

for e.g
290 / 100 = 2
I want result 2 but it gives 2.9

View Replies View Related

Find Images

where i can get very professional and sophisticated images for my web sites ( even if i have to pay for them )

View Replies View Related

Find Errors

I'm coding in classic asp and can't figure how to get IE6 to display some kind of descriptive message about code errors? I have the correct settings under ADVANCED in IE's options selected.

What bugs me is sometimes IE will report the line number and a message, and then other times it's the standard "The page can't be displayed." When you have hundreds of lines of code, how can you fight this?

View Replies View Related

Find In String

How can i count the number of times a string appears within another string.

View Replies View Related

Find Out The Count

i have 2 columns. called wintersubjects,summersubjects . the data in the columns will be 4 subjects.

maths
science
arts
social science

i want to find out the count for all of them.

View Replies View Related

ADO Find Method

I am attempting the following for a real estate website. I want to list the agents for the office all of whom have a unique identifier with an Auto Number type. As I loop through the recordset, I also want to open another table called listings. This table has a field called agent whose value is a number and corresponds to an agent in the agent table.

If there is a listing in the listing table, I want to insert a link to "View Listings", if not, no link. I am having a hard time doing this and if someone could point me in the right direction I'd appreciate it. I tried the Find method but to no success.

View Replies View Related

Find Numbers

I want to find numbers in one comma seperated string which are not in another one. For instance if I have two strings "strString1" and "strString2 how can I find numbers in "strString1" which are not in "strString2" Example:

strString1 = "1,3,6,12"
strString2 = "1,6"

In this case the numbers I want to end up with are 3 and 12.

View Replies View Related

Cant Find Syntax

I am working on a survey and I have gotten the pages done to collect the data but now I am having trouble finding the correct syntax for displaying some of the data back to the user. I basicly need one to do this

Text on site <field1*field2*1.5> More Text on site.

and a seperate one to do this:

if field1=a then write "message one"
if field2=b then write "message two"

View Replies View Related

How To Find Coordinates On The Image

I have one doubt in my asp code (or) in HTML.

How to find coordinates on the image for display the text on that image....

View Replies View Related

Find Current Directory

I am wondering if there is a command to determine what the current directory is.

My reason for this is that i have a include file called connection.asp sat in a folder called Data. My connection.asp file holds the connection details. I need to determine whether the file calling the include is in the root folder or not.

EG. if it is the root folder the location of the db will be "Data/dbMarkShop.mdb" but if it is another folder, say a Scripts folder, the location of th db would be "../Data/dbMarkShop.mdb"

View Replies View Related

Find Out Distance Calculator?

I am looking for a way create a distance calculator from city to city, zip to zip, so on so forth. I know this has been done many times. Does anyone have this around by any chance. Also does anyone know of a place I can get the db or text file I need for this? I know there are some floating about but haven't came across a decent one yet.

View Replies View Related

Find Missing Right Parenthesis!!

I keep getting an error message: missing right parenthesis and I cannot for the life of me figure out why. Please help me find the problem! It may simply be that I've been staring at the code too long and I'm missing something obvious.

SELECT A.FIELD1,
NVL(SELECT DISTINCT B.FIELD1FROM TABLEB BWHERE B.FIELD2=A.FIELD2AND B.FIELD3 = 1AND B.FIELD4 =(SELECT MAX(FIELD6) AS MAXFROM TABLEC CWHERE C.FIELD2 = B.FIELD7)),0)FROM TABLEA A

View Replies View Related

I Need To Find A File But Only Have Partial Name

I'm looking for images in my asp page.

I know the path and first and last part of the filename.

Example filename: A01-30420.jpg

I have the A01- and the .jpeg. The ##### portion could be anything, but always numeric (sofar).

The A01 is unique, i.e. there will only be one file of A01-#####.jpg

I'm using fileExists object to confirm a file exists when I have the full filename but havn't been able to figure out how to get the full filename when I only have a partial.

I could rename the files, i.e. drop the -##### but I'd have to do that everytime I get new ones so I'd like to work with the original filename if at all possible.

View Replies View Related

Random Numbers Find

I know thats theres already a few posts about this subject but I need to create 3 random numbers of any size, I've used the following code -:

randomnumber1 = int(rnd*9)+1
randomnumber2 = int(rnd*9)+1
randomnumber3 = int(rnd*9)+1

but it always returns, 7,5 and 6..
Not very random as you can see

View Replies View Related

Find Directory Path

I used to have an .asp script called whereami.asp that I could load into a directory on the web and then go to the URL and it would display the full path of that directory i.e D:Inetpubwwwrootmysitemydirectorywhereami.asp

But I've lost this script does anybody have the code that will do this. I seem to remember it was about 6 lines long - but as I am not that hot at asp I don't really know for sure.

View Replies View Related

How Do I Find Out Who Is Posting To My Form?

I have a web page, where users fill out their name and address, and I send
them a free catalog.

The problem is that someone is filling my form out about 100 times a day
throughout the day with peoples information, who don't want the catalog!

I have tracked the ip address (all different) and the http referrer, which
doesn't really tell me much. and looked in the iis logs, which lists the
ipaddresses.

How can I find out who is posting to my form???

View Replies View Related

Find Empty Sql Search

I need to do a search in ASP on an access database, and I don't need the results, just need to know if any results were found. Tried rs.count, rs,itemcount and several other ideas.

View Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved