Viewing 15 posts - 61 through 75 (of 144 total)
The correct way is close to the first way.
tlkpStateCode
StateID int (Identity) (pk)
StateCode varchar(10)
CountryCode varchar(2) (Using ISO 2 character standard) (FK tlkpCountry)
StateFullName varchar(50)
Unique index on StateCode + CountryCode
This design will allow...
November 23, 2004 at 12:58 pm
I pointed him to the CHARINDEX and SUBSTRING functions.
CHARINDEX allows him to find the starting character number of a character or string inside of a string.
SUBSTRING allows for the parsing...
November 23, 2004 at 8:38 am
He is talking about Access Data Project...
First, a user should never, not for any reason, have access to or be entering data into a table directly. Design forms and do...
November 23, 2004 at 8:35 am
After you correct the Bit datatype issue, delete all of the linked tables and link them again. Just relinking them does not refresh the information Access stores about the linked...
November 23, 2004 at 6:48 am
And, a totally different idea...
Create a table that has all the date conversions done, a dimension table. Then simply link to the table and pull only the month converted to...
November 23, 2004 at 6:33 am
With that specific design, you will need a separate resolver table for each type of party (employee, supplier, customer)
tbl_EmployeeAddress
EmployeeAddressID (pk)
EmployeeID
AddressID
AddressType
would be an example of the Employee Address table
November 22, 2004 at 4:02 pm
Send me the first 200 characters with about 10 records and I will send you the code to do the parsing. rl_stewart@highstream.net
November 22, 2004 at 12:26 pm
That is why I said short. 🙂 Based on the business logic for what he needs to do, you may or may not need audit, status, and effectivity columns included.
November 22, 2004 at 7:56 am
I agree with all of the others.
Bad design is bad design.
Sure, you can build it any way you want to. But, there is a price to pay for doing...
November 22, 2004 at 6:28 am
Here is a short normalized version of what you need to do:
tblParty
PartyID (PK)
PartyName
tblAddress
AddressID (pk)
AddressLine1
AddressLine
PostalCode
CityName
StateCode
tlkpAddressType
AddressTypeCode (pk)
AddressTypeDesc
tblPartyAddressType
PartyAddressTypeCode (pk)
PartyID
AddressID
AddressTypeCode
November 22, 2004 at 6:22 am
Actually, the best thing to do is make the adjustment in Access. Since the HTML code can occur any where in the text, you will have to write a rather...
November 22, 2004 at 6:10 am
That is what one-to-one relationships are for. 🙂 Just break your migration into multiple tables and then use views to combine them back together.
November 19, 2004 at 10:41 am
controlname.requery is the syntax for getting the combobox to requery and grab the new data.
A trigger is not the way of doing what you are wanting to do. The trigger...
November 16, 2004 at 7:13 am
You might want to look into using BizTalk for this. It is designed to automate business processes through messaging. I think you could automate the process without it, but it...
November 16, 2004 at 6:52 am
Are you moving all 45 million rows each night?
If so, what you want to try is creating one or mor text files from Oracle and then using the bulk load...
November 16, 2004 at 6:48 am
Viewing 15 posts - 61 through 75 (of 144 total)