2,951 Posted Topics
Re: you can't increment a string by a number directly as you have tried. try this way 1. separate the number from string. 2. increment the number as desired. 3. concatenate back with the string. | |
Re: You can write the back up script into a batch file and schedule to run the same using scheduled tasks or execute from your application. | |
Re: Please find the details [URL="http://www.oracle.com/technetwork/database/enterprise-edition/documentation/index.html"]here[/URL]. | |
Re: I clicked on a PM and got this. [B]Invalid Private Message specified. If you followed a valid link, please notify the administrator[/B] | |
Re: Which version of oracle you are trying to install ? | |
Re: so what you have tried till now ? | |
Re: the code will be more readable this way [CODE]SELECT a.Id,b.data_desc,c.other_desc,d.DATE FROM tab1 a,tab2 b,tab3 c,tab4 d WHERE a.Id = b.Id AND a.Id = c.Id AND a.Id = d.Id;[/CODE] NOTE:- avoid using DATE as a field name as it is a predefined key word (data type). which record is duplicate in … ![]() | |
Re: there is no reason why you can't set both min and max value for a dtpicker. | |
Re: May be you need to look into [URL="http://www.databaseanswers.org/data_models/"]this[/URL]. | |
Re: Please find it [URL="http://www.connectionstrings.com/"]here[/URL]. | |
![]() | |
| |
Re: without knowing what code you are working on , how can one guess if it is coding error or not . | |
Re: what is the code that you are working on ? | |
Re: To which version of SQL Server you are trying to connect to using Management Studio Express ? | |
Re: are you formatting the dates before importing ? Please have a look [URL="http://www.daniweb.com/software-development/vbnet/code/369512"]here[/URL]. | |
Re: You need to update the data not the application, right ? You need to use a centralized database and all the branches should access the single instance. | |
Re: what is the database that you are using ? | |
Re: You need to store the MS Access database in a shared location in the server to which other system users has permissions and then point to the same from your application. | |
Re: that will be easy if you calculate at database level. | |
Re: please read more [URL="http://www.google.co.in/search?hl=&q=mysql+installation&sourceid=navclient-ff&rlz=1B3GGLL_enIN395IN395&ie=UTF-8"]here[/URL]. ![]() | |
Re: why not select the product with min(price) from second table and fetch that product record from 1st table. | |
Re: what is the formula that you want to implement ? | |
Re: try this [CODE]SELECT * FROM ProfilesWebsites LEFT JOIN ProfilesAccounts ON ProfilesWebsites.ProfileWebsiteName = ProfilesAccounts.ProfileWebsiteName[/CODE] | |
Re: database should always be in centralized server. | |
Re: Sorry, we do not solve assignment / home work questions here. Show some effort to get help. | |
Re: No, if you do not want all the columns you need to specify the list of columns. If it a table or a view you can create a view on the source object using only the desired columns. | |
Re: On Error Resume Next----is evil, especially in the context of log in screens. [CODE]"select count(*) from login where username = ' " & Text1.Text & " ' and password = '" & Text2.Text &"'"[/CODE] if count returns 1 proceed further and go to the next screen else re-prompt for login … | |
Re: what is the source of the data ? is it from any database ? | |
Re: what is the input for the expected output ? | |
Re: with the information provided by you it is not possible to guess anything. | |
Re: have you tried using the NEW keyword. | |
Re: Please find it [URL="http://download.oracle.com/docs/cd/B19306_01/server.102/b14200.pdf"]here[/URL] and [URL="http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14261.pdf"]here[/URL]. | |
Re: Which version ? check the details [URL="http://www.connectionstrings.com/"]here[/URL]. | |
Re: that should be feature of application not oracle database. | |
Re: please check [URL="http://www.amazon.com/dp/0201694719/?tag=stackoverfl08-20"]this[/URL] and [URL="http://db.grussell.org/index.html"]this[/URL]. | |
Re: Can you please post your database table structures. |
The End.