2,951 Posted Topics
Re: I think the suggestion was keeping the future in sight. Mainly because of data growth in future which you may not be able to produce now (with less data). Do not forget data size is one of the key factor for calculating performance. Usually expression version is used for testing … | |
Re: You need to read [URL="http://msdn.microsoft.com/en-us/library/aa337562.aspx"]this[/URL] and [URL="http://msdn.microsoft.com/en-us/library/ms173463.aspx"]this[/URL]. Also read [URL="http://blog.sqlauthority.com/2008/12/27/sql-server-add-any-user-to-sysadmin-role-add-users-to-system-roles/"]this[/URL]. | |
Re: Lets see the code that you are working on. | |
Re: 1st one is conventional style SQL. 2nd is as per ANSI SQL. | |
Re: You simply need to apply the algorithm on the desired data. | |
Re: You need to store the password in the connection string itself. Please find more on [URL="http://connectionstrings.com/access"]connectionstring[/URL]. | |
Re: Have you tried anything yet ? Kindly post the code that you are working on for any help on the topic from experts. Go through the following for further reference. [URL="http://www.systemwebmail.com/faq/1.3.aspx"]link1[/URL] [URL="http://weblogs.asp.net/scottgu/archive/2005/12/10/432854.aspx"]link2[/URL] and [URL="http://forums.asp.net/t/971802.aspx"]link3[/URL]. | |
Re: I would suggest 3rd way (some changes to method 1). | |
Re: You need to check for and handle [B]NULL[/B] values in your Stored Procedure. ![]() | |
Re: More information is required to answer your question. | |
Re: Better maintain separate database (not separate tables) for each client for data security. | |
Re: What exactly you are trying to achieve, please elaborate. | |
Re: It shows the date of the server, check for timezone as well. | |
Re: You need to look into the availability column. But that column shows status of the car or the driver ? | |
Re: You need to update after adding each set of values otherwise only the last bunch of values will over write all other previous values. | |
Re: In others words [B]rental[/B] can be created on once customer, movie and game tables are in existence. | |
Re: Lets see your query and how you call the same from VB. | |
Re: Sorry to say, but you have to solve your own assignment. | |
Re: I consider you are asking about OUT parameter. Please go through this [URL="http://bytes.com/topic/visual-basic/insights/739077-executing-oracle-stored-procedures-both-out-type-parameter"]sample code[/URL]. That code is written for Oracle, but VB part remains same. | |
Re: Do not expect us to guess and solve your problem. What is the code that you are working on ? | |
Re: you need to set the password for sys and system users at the time of installation and the scott user account will be initially locked you need tpo log in to system or sys account to unlock the scott user. | |
Re: ehe he he :D now the gal is in trouble translating non-english english to queen's english. | |
| |
![]() | Re: It does not matter how the code looks or anyone likes it or not [B]CASE[/B] is the solution. And CASE works really faster. ![]() |
| |
Re: That is not a practical design. How different is b1R0 from that of b2LI and again from b2L0 ? What about storing these as flags in another column in the table. | |
Re: No need to store data in HH, MM, SS columns. These can be calculated at run time using the previous solution. | |
Re: I think USA has a team, but they could not qualify for the event. | |
Re: Hi Cathy, Welcome to daniweb. You should not hate cricket, specially when the cricket world cup is going on. | |
Re: How you know which is the last record in the database ? Last record as per what ? In a typical RDBMS environment the last row is not necessarily the last record. Better try to use Order by Desc in the SQL query that you are using on specific column. | |
Re: On which event you are calling [B]EnableChoice[/B] ? | |
Re: Before i look into the ER let me know how you are going to use this in your application. | |
Re: What the question is all about ? Is it database related ? | |
Re: the following is a sample of range partition. [code] CREATE TABLE test_range ( test_id INT AUTO_INCREMENT PRIMARY KEY, test_date DATE ) ENGINE = MYISAM PARTITION BY RANGE(test_id) ( PARTITION p0 VALUES LESS THAN(10000), PARTITION p1 VALUES LESS THAN(20000), PARTITION p2 VALUES LESS THAN(30000), PARTITION p3 VALUES LESS THAN(40000), PARTITION p4 … |
The End.