Viewing 15 posts - 1 through 15 (of 25 total)
I would take the route that ipTomN stated
However, the question you need to ask before starting work on this is: How do you establish the entity relationships for the data...
June 7, 2004 at 7:56 am
Hehe... I have had my bad days with inexperienced programmers as well.
I am in a career position where I am both DBA and programmer for my organization. Most...
June 7, 2004 at 6:00 am
I also have to concur that the programmers should address this issue, not the DBA.
As a programmer, I know that it is important to create applications that manage resources efficiently....
June 7, 2004 at 5:15 am
I had a similar situation when I worked for a previous employer, but I approached the problem in a different manner.
We had about 60 different customers that provided us data...
June 3, 2004 at 7:02 am
I have two SQL Server books.
One is for all of the basics involving SQL Server 2000.
It is one of those SAMS Teach Yourself SQL Server 2000 in 21 Days books....
June 3, 2004 at 6:11 am
In all the applications I design, I plan to always use OLE-DB. In applications that may be implemented in other network environments, I have to design the application to...
June 2, 2004 at 5:44 am
I hope this will be a simpler explaination...
OLE-DB connection libraries are the compiled "native" dlls that allow any application to connect to the database they are desiged to communicate with....
June 1, 2004 at 10:55 am
LOL... been there and done that!
Sometimes it takes just examining the data file in fine detail to identify potential gotchas. A good text editor always seems to be...
May 27, 2004 at 6:07 am
You also may want to check out some of the tools here: http://www.apexsql.com/
May 27, 2004 at 5:32 am
I have a feeling that your not going to get any close numbers. The best you may find, if anything, is an educated guess.
Case 1) Many small...
May 13, 2004 at 6:33 am
Pardon the blandness of the code, but I can only guess at the table design you are working with.
Assuming the following:
-ForumUsers table has all forum user data and has a...
April 26, 2004 at 6:02 am
Oops... found an error in my code above...
This is more correct
sql="Update Student "
sql=sql & "Set stud_fname = '" & fullname & "', "
sql=sql & "stud_id = '" & stud_id...
April 22, 2004 at 11:39 am
First
Make sure you can open and close the connection object without errors.
If that works clean, then try the following approach:
set conn=Server.CreateObject("ADODB.Connection")
conn.open="dsn=FLAMINBUTT; db=cybercounsel; UID=cyber; PWD= counsel"
sql="Update Student "
sql=sql &...
April 22, 2004 at 6:48 am
I would approach this problem in different manner.
Using the method of your choice (batch file, VBS script, compiled program, manual labor, whatever it takes) make a copy of the latest...
April 22, 2004 at 6:03 am
I have been dealing with this common EDI issue for many years now.
Although there are many different formats that the name can be formatted in, there are also many unique...
December 17, 2003 at 12:17 pm
Viewing 15 posts - 1 through 15 (of 25 total)