Tagged Questions
3
votes
2answers
377 views
SQL Server Identity primary key vs no Identity performance - Using formula in primary key
Are there any differences in performance between Identity primary key and normal primary keys?
Actually I want to create a table that may fill with more than 5 million rows. The table should return ...
0
votes
2answers
80 views
MySQL performance with missing values on autoincrement id as key
Example:
I have a tab "books" with "id" (int autoincrement) as primary key,
name, author, price etc...(not important). There's 5 books and I delete the book with id=3.
When I add other books the ...
0
votes
1answer
76 views
Guid(Random ints) vs regular int primary key for chat application
I am not asking a general "guid vs ints which is better" question. I know that, or atleast think I know that they both have specific scenarios where one is better than the other. But I do have a ...
2
votes
1answer
527 views
Android: Use UUID as primary key in SQLite
My app needs to get synced with other app users (on there own devices). I also want to support offline editing, that are synchronized to the other collaborative users when the user gets connected to ...
0
votes
1answer
91 views
How does column order of a clustered Index effect performance
I have a simple mapping table with two foreign key columns (CategoryId int, ProductId int). The Primary Key is applied to both columns.
While each Product can have more than one category, it is ...
0
votes
1answer
65 views
Search User By PK vs. Username Performance
I'm defining a custom route for SEO and trying to decide whether the URL should look like site.com/user/userid/username vs site.com/user/username where user is the controller and the other two are ...
1
vote
2answers
191 views
Merging two tables, duplicate keys
*I'm very new to this, I might (probably will?) be talking some jibberish now and then, feel free to correct me ;)
I'm playing around with different primary key/index strategies and was wondering ...
0
votes
1answer
163 views
Teradata: How to design table to be normalized with many foreign key columns?
I am designing a table in Teradata with about 30 columns. These columns are going to need to store several time-interval-style values such as Daily, Monthly, Weekly, etc. It is bad design to store ...
0
votes
2answers
280 views
varchar and composite primary keys in mysql?
I am developing a logging database, the ids of the components being logged in this case are not determined by the database itself, but by the system that sends the report. The system id is a unique ...
3
votes
2answers
364 views
GUID + Auto-Increment ID = Slow Performance?
One of Jeff Atwood's cons of using a GUID is that it is
Cumbersome to debug (where userid='{BAE7DF4-DDF-3RG-5TY3E3RF456AS10}')
And I agree. I was thinking, now that 16-byte ID's are no longer ...
0
votes
3answers
419 views
MySQL: optimization of table (indexing, foreign key) with no primary keys
Each member has 0 or more orders. Each order contains at least 1 item.
memberid - varchar, not integer - that's OK (please do not mention that's not very good, I can't change it).
So, thera 3 tables: ...
1
vote
3answers
464 views
MySQL: size of VARCHAR as PK similarly as fast as an INT?
What would be a good/safe maximum length for a VARCHAR column as primary key not being much/any slower than an INTEGER ID using MySQL 5 + InnoDB on a 64 bit system? Note, that this PK should be ...
3
votes
3answers
260 views
SQL Server - Selecting a Primary Key for my table
I have a table that stores user info.
In the User table, username is unique. Do you think I should make username as primarykey or should I use a surrogate key that is an int?
Would using a string key ...
1
vote
1answer
616 views
how can I improve performance if I have used primary key on a guid column?
i got a table with half a million rows.
the primary key is the guid column .
I found the query select * from T where id ='xxxx' is very slow .
what should I do to improve performance ?
2
votes
3answers
262 views
Using a meaningless ID as my clustered index rather than my primary key
I'm working in SQL Server 2008 R2
As part of a complete schema rebuild, I am creating a table that will be used to store advertising campaign performance by zipcode by day. The table setup I'm ...
0
votes
5answers
389 views
SQL: how to find unused primary key
I've got a table with > 1'000'000 entries; this table is referenced from about 130 other tables. My problem is that a lot of those 1-mio-entries is old and unused.
What's the fastet way to find the ...
0
votes
1answer
130 views
What's the fastest way to query for a free ID in an SQLite table?
I heard that SQLite has special processing for ID columns and is stored with a special type, "PRIMARY NUMERIC KEY".
So what's the fastest query I can write to fetch a free ID? Assuming that all ID's ...
0
votes
1answer
66 views
Rails: Changing models IDs on the DB
For reasons of synchronizing between 2 different DBs used by different applications,
I need to change the unique primary key IDs fields of some of my models.
This is done in order to conform the ...
2
votes
3answers
1k views
SQL Server performance difference with single or multi column primary key?
Is there any difference in performance (in terms of inserting/updating & querying) a table if the primary key is a single column (e.g., a GUID generated for every row) or multiple columns (e.g., a ...
4
votes
2answers
2k views
Performance: UUID vs auto-increment in cakephp-mysql
I was searching if UUID generated by cakePHP (32 char long) is faster in performance compared to auto-increment. Comparison in both inserts and Select operation.
Which one should I use UUID generated ...
5
votes
3answers
423 views
How does the `primary key` keyword relate to clustered indexes in SQL Server?
How does the PRIMARY KEY keyword relate to clustered indexes in SQL Server?
(Some people seem to want to answer this question instead of a different question I asked, so I am giving them a better ...
1
vote
2answers
198 views
Schemas and Indexes & Primary Keys : Differences in lookup performance?
I have a database (running on postgres, precisely) , with the following structure :
user1 (schema)
|
- cars (table)
- airplanes (table, again)
...
user2
|
- cars
- airplanes
...
It's clearly ...
1
vote
5answers
2k views
Using SELECT with a primary key in MySQL
I'm trying to speed up my SELECT queries in my web application. I have done some pretty major optimizations, like ordering the rows returned by PHP rather than MySQL itself. Now I'm just wondering, is ...
0
votes
1answer
296 views
Is there a specific performance issue with Entity Framework + GUID PKs?
My company has a basic SOA, using Entity Framework for database access. One of our services must interface with a legacy database which uses uniqueidentifier primary keys in the database. Performance ...
1
vote
6answers
940 views
Performance - Int vs Char(3)
I have a table and am debating between 2 different ways to store information. It has a structure like so
int id
int FK_id
varchar(50) info1
varchar(50) info2
varchar(50) ...
3
votes
4answers
2k views
Details of impact for indexes, primary keys, unique keys
I like to think I know enought theory, but I have little experience optimizing DB in real world.
I would like to know points of view, thoughts or experiences.
Let's imagine a scenario like:
Table A
...
3
votes
1answer
426 views
Primary key as INT and global key as GUID for improved performance
While deciding upon the keys for a table, is it good to have an INT primary key (autoincrement) for the table and a GUID (in addition to the INT) for the scope of the database? Given that there will ...
2
votes
4answers
417 views
What is MySQL primary (key1, key2)
I am working on existing DB and try to optimize it. I see a table without a single primary key but with two foreign keys work as a primary key. I know it will work. however, is it better to have one ...
1
vote
2answers
297 views
Necessity of foreign key in this case(innoDB/mysql)
i recently migrated my whole DB from myisam to innodb. I am fairly new to all this so i have a question regarding the use of the foreign key.
Lets say i have two tables: users, messages.
users
id ...
2
votes
3answers
96 views
Performance enhancements for tables
With MySQL I often overlook some options like 'signed/unsigned' ints and 'allow null' but I'm wondering if these details could slow a web application down.
Are there any notable performance ...
18
votes
3answers
13k views
Composite Primary Key performance drawback in MySQL
We have a table with a composite Primary key consisting of three fields (and it is in MySQL 5.1). There are near 200 inserts and 200 selects per second on this table, and the size of the table is ...
153
votes
9answers
106k views
How to 'insert if not exists' in MySQL?
I started by googling, and found this article which talks about mutex tables.
I have a table with ~14 million records. If I want to add more data in the same format, is there a way to ensure the ...
5
votes
4answers
3k views
SQL Server Datetime vs Int key performance
For you database design/performance gurus out there.
If you have a database that is intended to track financial data for fiscal year periods, is it better/more performance/more clear to do daterange ...
2
votes
2answers
1k views
Primary Key Effect on Performance in SQLite
I have an sqlite database used to store information about backup jobs. Each run, it increases approximately 25mb as a result of adding around 32,000 entries to a particular table.
This table is a ...
1
vote
4answers
815 views
Slow update (primary key)
update auditdata set TATCallType='12',TATCallUnit='1' from auditdata auditdata
inner join Auditdata_sms_12 a_sns
on auditdata.ID = a_sns.id
when I above query it takes more than 10 ...
0
votes
1answer
307 views
Performance with sequentially increasing primary key
Looking for guidance on selecting a database provider for a specific key pattern.
The only key field will be a pre-allocated unique sequentially-increasing number.
During each day between
50 and 100 ...
7
votes
6answers
8k views
Improving performance of cluster index GUID primary key
I've a table with large number of rows (10K+) and it primary key is GUID. The primary key is clustered. The query performance is quite low on this table. Please provide suggestions to make it ...
0
votes
5answers
569 views
Smart choice for primary key and clustered index on a table in SQL 2005 to boost performance of selecting single record or multiple records
EDIT: I have added "Slug" column to address performance issues on specific record selection.
I have following columns in my table.
Id Int - Primary key (identity, clustered by default)
Slug ...
35
votes
9answers
19k views
Is there a REAL performance difference between INT and VARCHAR primary keys?
Is there a measurable performance difference between using INT vs. VARCHAR as a primary key in MySQL? I'd like to use VARCHAR as the primary key for reference lists (think US States, Country Codes) ...
7
votes
4answers
7k views
Number VS Varchar(2) Primary Keys
I'm now to this point of my project that I need to design my database (Oracle).
Usually for the status and countries tables I don’t use a numeric primary key, for example
STATUS (max 6)
AC --> ...

