Viewing 15 posts - 46 through 60 (of 85 total)
Hi Jim,
I think that the solution to your problem is right in front of you. The structure that you already have can be used to model the necessary associations, but...
November 17, 2004 at 12:43 am
Hi Stefan,
It would be very helpfull for SSC members eager to help you if you post as much structure and exact SQL statements as possible. The solution to the problem...
November 9, 2004 at 12:47 am
Hi sahana,
I prefer application reliability to query performance. I would first ensure that there are no time bombs in the DB (like having a table with row size > 8K)...
October 27, 2004 at 1:01 am
Hi Scott,
I've read something similar for ORACLE. It said that, basically, there is only one kind of indexes in ORACLE - unique indexes. The same trick is used there, too:...
October 27, 2004 at 12:41 am
Hi Ville,
my first hint would be to check the MDAC version on the client machines. MDAC 2.7 or newer is required to access named instances.
Regards,
Goce smilevski.
October 22, 2004 at 1:03 am
Hi BPH,
several links on the pivoting (crosstab) subject:
http://www.sqlservercentral.com/scripts/contributions/818.asp
http://www.sqlservercentral.com/scripts/contributions/931.asp
http://www.sqlservercentral.com/scripts/contributions/936.asp
Also, you can search for "pivot" or "crosstab" in tha scripts library .
Regards,
Goce Smilevski.
October 21, 2004 at 1:40 am
Hi Hans,
try this (from BOL for MS SQL 2000): in the Index tab of BOL type "execution plan" and double click on the "Execution Plan pane" in the list below....
October 21, 2004 at 1:05 am
Hi Simon,
some sample data and desired output result would help me and others to better understand the problem.
Regards,
Goce Smilevski.
October 15, 2004 at 1:27 am
Hi all,
Since the ID column is IDENTITY, I would only suggest a replacement of the SELECT TOP 1 ... subquery with this one
(select * from Table1
where ID = convert(int,...
October 14, 2004 at 1:38 am
Hi Sairam,
I think that the problem is similar to this one.
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=5&messageid=99869
Regards,
Goce Smilevski.
October 7, 2004 at 12:49 am
Hi Isaac,
it can be done:
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=5&messageid=99869
Regards,
Goce.
September 22, 2004 at 1:27 am
Hi,
Even though MS Access is known to be very fast when combo boxes are used, I would not display 50,000 records in a combo box. From the problem description in...
September 9, 2004 at 1:05 am
Self-referencing foreign key is supported (I used it, on MS SQL 2000). The syntax does not differ from the standard syntax for creating FK on a different table. based, on...
September 3, 2004 at 1:11 am
Hi,
I would create 3 separate indexes. ORACLE uses indexes on FK columns in the child table while validating data, to avoid chld table locking. I don't know yet if MS...
September 3, 2004 at 12:56 am
June 30, 2004 at 12:59 am
Viewing 15 posts - 46 through 60 (of 85 total)