0
votes
2answers
42 views
Increase increment size to match GUID advantage
Hi,
I've been thinking of implementing this system, but can't help but feel there's a catch somewhere. One of the points of using GUID over incrementing int is that, in the futu …
0
votes
2answers
20 views
trap of primary key error
hi expert,
i wants to trap sql-2000 primary key error into c# and develop my own error like
"this is duplicate Invoice Number"
kindly reply how to do this in c# application.
Tha …
3
votes
4answers
234 views
Mysql auto increment primary key id’s
I have some mysql tables that have auto incrementing id's that are primary keys, but I notice that I never actually use them... I used to think that every table must have a primary …
2
votes
2answers
74 views
Are Multi-column Primary Keys in MySQL a optimisation problem?
Been looking into using multi-column primary keys and as performance is extremely important with the size of traffic and database I need to know if there is anything to consider be …
0
votes
3answers
177 views
Using datetime float representation as primary key
From my experience I have learn that using an surrogate INT data type column as primary key esp. an IDENTITY key column offers better performance than using GUID or char/varchar da …
0
votes
0answers
57 views
how to use recently entered id in another table for primary key
declare @@newid int, @@newRequestId int
INSERT INTO Projects (ProjectName)
VALUES ('first')
SELECT [@@newId] = SCOPE_IDENTITY()
-- Insert statements for procedure here
INSE …
1
vote
3answers
205 views
I need to auto_increment a field in MySQL that is not primary key
Hey everyone,
Right now, I have a table whose primary key is an auto_increment field. However, I need to set the primary key as username, date (to ensure that there cannot be a du …
1
vote
1answer
85 views
How to get the Primary/Secondary color in jQuery UI Theme
Is there a way to reference the colours used in the jQuery themes without creating a simple style for each theme that I may choose to use?
Example: I have some text as follows
&l …
0
votes
3answers
100 views
Make one ID with auto_increment depending on another ID - possible?
I want to make a small ticket-system for a project server which has several projects.
So far the TicketID will be counted globally, i.e. there is a project A and a ticket with Tick …
0
votes
5answers
760 views
Making primary key and identity column after data has been loaded.
I have quick question for you SQL gurus. I have existing tables without primary key column and Identity is not set. Now I am trying to modify those tables by making existing intege …
2
votes
5answers
1k views
How do I use a Rails ActiveRecord migration to insert a primary key into a MySQL database?
I need to create an AR migration for a table of image files. The images are being checked into the source tree, and should act like attachment_fu files. That being the case, I'm …
4
votes
2answers
1k views
Sqlite primary key on multiple columns
What is the syntax for specifying a primary key on more than 1 column in SQLITE ?
0
votes
2answers
134 views
More Primary / Auto-adding unique IDs per one table in MySQL?
Hi,
Is it possible to have two and more primary/automatic-adding unique IDs per one table in MySQL? For example:
Primary Key (INT,11);shop_id;invoice_id
1;200;2001
1;201;2011
2; …
0
votes
3answers
66 views
Is it a good idea to have Multiple FKs in one field in MySQL?
I'm setting up a database and I'm interested in having a facebook-like friends system.
My original plan was to have a table like so:
uid friends
4 30,23,12,33
30 54,92,108
…
5
votes
5answers
4k views
make an ID in a mysql table auto_increment (after the fact)
I acquired a database from another developer. He didn't use auto_incrementers on any tables. They all have primary key ID's, but he did all the incrementing manually, in code.
C …
