2,951 Posted Topics
Re: Are you trying to create a report out of this query ? | |
Re: To implement indexes for getting performance is always an option. But to go for that one needs to have complete knowledge of the database design and the flow of data (how application hits the DB). | |
Re: May be your connection string is stored with wrong credentials. Find more on [URL="http://www.connectionstrings.com/sql-server-2008"]connection strings[/URL]. | |
Re: try the following , may work for you. [CODE]DELETE ServiceID FROM tblServices where serviceid in (select ServiceID FROM tblServices GROUP BY ServiceID HAVING MID(ServiceID,1,2)='SG')[/CODE] | |
Re: Try this. [CODE]SELECT TABLE_NAME,NUM_ROWS FROM USER_TABLES[/CODE] | |
Re: what exactly is last row ? When you store records in database , it is not necessary that the last entered row will be always stored at the bottom of the table. | |
Re: i think your column name is [B]post_type[/B] not [B]post-type[/B]. | |
Re: you need not write any code for that. the device reads the code and the value is populated on any control that has focus, that may be any editable control in any application or simply a notepad. | |
Re: [QUOTE=loving3232;1543720]use them to make a new data [/QUOTE] What exactly you are trying to do ? are you trying to implement some encryption algorithm ? | |
Re: Yes you need to use Dynamic SQL. Try [URL="http://www.java2s.com/Code/SQL/Procedure-Function/EXECUTEdynamicSQLcommand.htm"]this sample[/URL] or [URL="http://lists.mysql.com/mysql/207796"]this[/URL]. | |
Re: Let me tell you databases are not created at run time, for what ever reason. | |
Re: Yes coach and member should be related through sport not directly. | |
Re: because that is not practical for a technical forum where most of the people post code. | |
Re: do you have the required drivers installed on your system ? | |
Re: yes you need to create the commands using a script. to conform, this can't be done in a single line command. | |
Re: try using IS NULL read more [URL="http://msdn.microsoft.com/en-us/library/ms181765.aspx"]here[/URL]. | |
Re: Please check your [URL="http://www.connectionstrings.com/"]connection string[/URL]. | |
Re: use this [CODE]SELECT column_name FROM cols@SrcDatabase WHERE Table_name = UPPER('Emp'); or select column_name from user_tab_cols@SrcDatabase WHERE Table_name = UPPER('Emp');[/CODE] | |
Re: what happens when you comment this line [CODE]sd.InitialDirectory = "C:\"[/CODE] and then try to create the file by browsing the file dialog ? | |
Re: try this [CODE]$sql = "SELECT 'name','owner' FROM table WHERE 'verified'='1' AND (name LIKE '$%term%' OR 'owner' LIKE '%$term%')";[/CODE] | |
Re: You are asking about database login ? A single login will do. | |
Re: do you have any code that you are working on ? | |
Re: [QUOTE=djansyle;1545925]send multiple screenshot images from my client to server.. [/QUOTE] what client, which server... mail server, application server, database server ....what ? [QUOTE=djansyle;1545925] any code will help... [/QUOTE] lets see the code that you are working on | |
Re: [URL="http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=97917"]This[/URL] discussion may be useful to you. | |
Re: There is no rule of thumb to follow to optimize a query. and what you are trying to do is not optimization, but removing some requirements. | |
Re: Lets see what is the code that you are working on to get the desired output. | |
Re: You need to store the payment details in a single table with a payment type flag that specifies what type of payment that was. | |
Re: If you have two separate databases what is the problem ? | |
Re: you need to create trigger on each of the events on the base tables. | |
Re: I can't see the block of the code that you are referring to in the code that you have posted here. | |
Re: Are you getting any error message ? | |
Re: what is the underlying database ? What is the query that you are using ? | |
Re: [QUOTE=vb6lover;1541429]i need your help [/QUOTE] we help those who help them selves. [QUOTE=vb6lover;1541429] to make a webbrowser work automaticly[/QUOTE] nothing works automatically, you have to make it do that by writing some code. BTW- What is the code that you are working on ? | |
Re: In this case important question is what are going to do with all those data . | |
Re: Glad to learn that being an arts graduate you have hands on experience in Programming language. Your posts shows you have spend some time on programming. Even though there are few companies who are still working on VB, you need to accept that it is an outdated technology. Believe me, … |
The End.