Viewing 14 posts - 1 through 15 (of 15 total)
:hehe: No, I didn't - but now I am more confused as what entries should I be inserting into these columns
July 11, 2015 at 1:26 pm
I didn't create primary keys with my inserts into the example tables- assume this is the problem?
July 11, 2015 at 12:25 pm
Thanks guys. So every row in the User and Categories table will be linked to the UserCategories table? I know I am missing something obvious as they both tables have...
July 11, 2015 at 10:17 am
Thanks for your advice. There are a lot of points here, so to be clear. Naming to avoid ambiguity/irrelevant conventions is a must so I'll definitley do this, but have...
June 18, 2015 at 3:27 am
Would my assumptions be near to the mark?
June 17, 2015 at 3:55 pm
Thanks Sean
I hope the follwing info gives more of an idea. Economic Class relates to which sector of the economy the company fits into - (Financials, Cyclical consumer goods, Technology)...
June 17, 2015 at 3:15 pm
Hi Steve, I am not sure what you mean "What are you going to do when you want to have a SicText5? Or a 4th PreviousName?" How could I design...
April 10, 2015 at 9:03 am
Hi, I think I am closer to posing a clearer question. Here is a company information table that I split from the address one:
USE DataCompany
CREATE TABLE CompanyInformation
( CompanyCategory varchar (100)
,CompanyStatus...
April 9, 2015 at 6:08 pm
Ok, thanks for all your points- I will separate the other information that goes beyond addresses into another table and change the lengths. Then I will see where I am...
April 3, 2015 at 3:08 pm
the financialservices is names, they will all be set up the same but obviously the names will be different. I will rethink it and get back to you...
April 3, 2015 at 1:25 pm
Create Table for CompanyAddress1
USE MasterAddress
Create Table CompanyAddress1
(
ID int IDENTITY(1,1) PRIMARY KEY
,CompanyName varchar (MAX)
,CompanyNumber varchar (MAX)
...
April 3, 2015 at 1:00 pm
OK, the names table was a generic way of listing for brevity, the tables are different industry sectors. Yes all of those tables are exactly the same. will your solution...
April 3, 2015 at 7:23 am
Did you mean from information schema columns?
1IDintNULLNO
2databasenamevarchar50NO
3sectorvarchar75YES
4datedateNULLYES
5influenceclassificationvarchar50YES
6firstnamevarchar50NO
7lastnamevarchar75NO
8companyvarchar100NO
9phonevarchar50NO
10companyrevenuevarchar100YES
11companysizevarchar100YES
12titlevarchar-1YES
13linkedinIDvarchar-1YES
14emailvarchar-1YES
April 3, 2015 at 7:19 am
Judging by the zero replies this isn't possible. So could someone tell me whether it would be more logical to merge the tables and just have a flat table...
April 3, 2015 at 5:18 am
Viewing 14 posts - 1 through 15 (of 15 total)