2,951 Posted Topics

Member Avatar for freshfitz

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 …

Member Avatar for freshfitz
0
110
Member Avatar for dobleseis
Member Avatar for Tank50

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].

Member Avatar for Tank50
0
107
Member Avatar for dotnetfresher
Member Avatar for BrianDickson
Member Avatar for Shuel
Member Avatar for darhyl
Member Avatar for arezz09

You need to store the password in the connection string itself. Please find more on [URL="http://connectionstrings.com/access"]connectionstring[/URL].

Member Avatar for debasisdas
0
113
Member Avatar for gulbano
Member Avatar for haiws01
Member Avatar for pratibhamohanty

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].

Member Avatar for pratibhamohanty
0
127
Member Avatar for zuko9215
Member Avatar for AdeelM
0
147
Member Avatar for Mike Bishop

You need to check for and handle [B]NULL[/B] values in your Stored Procedure.

Member Avatar for Unhnd_Exception
0
88
Member Avatar for feedz87
Member Avatar for mbarandao

Better maintain separate database (not separate tables) for each client for data security.

Member Avatar for mbarandao
0
288
Member Avatar for john303
Member Avatar for jingda
0
118
Member Avatar for nigelv1
Member Avatar for ctkam
Member Avatar for htmlCoder101
0
198
Member Avatar for d3vil112

You need to look into the availability column. But that column shows status of the car or the driver ?

Member Avatar for debasisdas
0
23
Member Avatar for karthiyayiniyp

You need to update after adding each set of values otherwise only the last bunch of values will over write all other previous values.

Member Avatar for debasisdas
0
137
Member Avatar for lsvife
Member Avatar for corpen
Member Avatar for debasisdas
0
273
Member Avatar for jfunchio
Member Avatar for debasisdas
0
253
Member Avatar for drogba123

It would be better if you re-phrase your question. Please post one question only per thread.

Member Avatar for debasisdas
0
79
Member Avatar for karthiyayiniyp
Member Avatar for bobnino
Member Avatar for cabsjonel

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.

Member Avatar for debasisdas
0
104
Member Avatar for samehere

Do not expect us to guess and solve your problem. What is the code that you are working on ?

Member Avatar for samehere
0
184
Member Avatar for nikhath

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.

Member Avatar for debasisdas
1
2K
Member Avatar for lhxndd
Member Avatar for kudenv

ehe he he :D now the gal is in trouble translating non-english english to queen's english.

Member Avatar for jingda
0
244
Member Avatar for CorruptionInc

Hi Shawn, Welcome to Daniweb. Hope you have all the fun while learning.

Member Avatar for e-papa
0
113
Member Avatar for Appienator

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.

Member Avatar for Appienator
0
245
Member Avatar for fadia
Member Avatar for newbie14

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.

Member Avatar for smantscheff
0
132
Member Avatar for Silent-Regret

No need to store data in HH, MM, SS columns. These can be calculated at run time using the previous solution.

Member Avatar for Silent-Regret
0
239
Member Avatar for sanjay11
Member Avatar for jingda
0
1K
Member Avatar for jingda
Member Avatar for ndeniche
Member Avatar for eileenc87
Member Avatar for mang0
Member Avatar for freestyle225
Member Avatar for NannaMO

Hi Cathy, Welcome to daniweb. You should not hate cricket, specially when the cricket world cup is going on.

Member Avatar for e-papa
0
92
Member Avatar for heinzel
Member Avatar for frogboy77
Member Avatar for ZER09

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.

Member Avatar for ZER09
0
118
Member Avatar for satti
Member Avatar for jayanandan

Before i look into the ER let me know how you are going to use this in your application.

Member Avatar for jayanandan
0
139
Member Avatar for jmckumar
Member Avatar for Venom Rush

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 …

Member Avatar for debasisdas
0
211

The End.