Recent IT Questions

1 - 20 of 84
<<PREVIOUS 1|2|3|4|5 NEXT>>

sql query

i am working on a project. If i enter the a/c no and i found correct then the companies name and their share values are provided to me.. After that when i buy a no of shares i get the Transaction amount(no of shares*share value),broker value(1.5% of transaction amount),total amount (transaction...

View Answer   |  Oct 28 2009  5:43 AM GMT
Oracle 10g, SQL Query
asked by Creative49

  5 pts.

SQL query help

Below is a list of the query that I am working on. There are part numbers that may be match to more than one module number. What I need is to show only the part numbers for the list. These part numbers I need a list of only one part number for each group. PartNo------ Module------ Numbers...

View Answer   |  Oct 26 2009  1:24 PM GMT
SQL, SQL Query, SQL queries
asked by CompEng

  570 pts.

SQL Query Issues with date math

Table with partial sample data would appear as follows: EQUIPNO  ASSEMBLY  START_TIME  END_TIME 150          0              24-MAY-09   25-MAY-09 150          0              25-MAY-09   25-MAY-09 150          0             ...

View Answer   |  Sep 29 2009  7:37 PM GMT
Date calculation, Date format, SQL
asked by Phoenix2

  10 pts.

speed up selection in SQL Query

I am using a database,which is mainly using for Data retrieving purpose.What all are the tricks to increase the speed of select query from that database?

View Answer   |  Sep 3 2009  10:51 AM GMT
SQL, SQL Query
asked by Shajina

  5 pts.

Improving the initial speed of a SQL query

I have optimized my SQL query to the maximum extent. The first time I ran the query, it took 7 seconds; the next time it took half a second. Why did this happen? How can I make the query run faster the first time around?

View Answer   |  Jul 21 2009  6:11 PM GMT
SQL query optimization, SQL queries, SQL Query
asked by SQL Server Ask the Experts

  2420 pts.

Sql Query in AS400

I am trying to execute a Query String but I receive following error Query exceeded the specified time limit or storage limit however my query length is normal, nevertheless i have executed larger query too. How to solve this problem.

View Answer   |  Jul 20 2009  7:21 AM GMT
SQL Query, SQL query optimization
asked by Mr. SEA

  85 pts.

Help Refactoring SQL Query

Dear Friend Below is my SQL Query select DISTINCT Auditdata.ID,ns.ProviderMaster_ID as CDRComment from Auditdata AuditData inner join AuditMaster am on am.ID=AuditData.AuditMaster_ID inner join HomeCircleMaster hcm on ...

Answer Question   |  Jul 16 2009  8:54 AM GMT
SQL Query, Refactoring, SQL
asked by Mxaxyogesh2002

  30 pts.

slow update Query(Primary Key)

dear Friends when i run below query its take more than 10 minutes and still running.... update auditdata set TATCallType='12',TATCallUnit='1' from auditdata auditdata inner join Auditdata_sms_12 a_sns on auditdata.ID = a_sns.id auditdata is my original table in above table ID is primary key ...

View Answer   |  Jul 14 2009  4:22 PM GMT
SQL, SQL Query, SQL performance
asked by Mxaxyogesh2002

  30 pts.

Using sql code to read a filename

Can you write sql query that will read pdf filename from a dir and then match the filename to a data element in a table having the same name? For instance, the filename is 12345.pdf where 12345 is actually an invoice number. Can the query read the filename and then locate the same invoice number...

View Answer   |  Jul 11 2009  6:04 AM GMT
SQL Query, SQL, SQL statements
asked by Teedee

  5 pts.

SQL: comparing rows and give the change

saving greetings to everyone! i m receiving a dump data at day 1, inserting all that data into a database. this database has about 30 above tables, each and every table has about 100 above rows. every table has a column name cell id. on 2nd day i again receive the dump which also has to be...

View Answer   |  Jun 24 2009  2:06 PM GMT
SQL Query, SQL
asked by K38

  20 pts.

Query showing vbCRLF in string data

Can someone provide SQL code that would generate a table showing any instance where a vbCRLF character can be found anywhere in my table? IOW, I'm trying to list records where the user input 2 or more lines of data in a simple text field. E.g., "John Q. vbCRLFSmith" as opposed to just "John Q....

View Answer   |  Jun 17 2009  4:25 PM GMT
Microsoft Access, Access Database, Access 2003
asked by Sandisk

  25 pts.

Concatenation

I am using "substring(concat('00'...." within my SQL select for a date query. However, the date 10 and higher is being overridden with "0". How do I prevent this from happening?

View Answer   |  Jun 9 2009  6:55 PM GMT
Substring, SQL Select, SQL Query
asked by BGramby

  15 pts.

empty fields in a query

I have a column with answers that people responded to different questions about themseleves. I have another column with the question id that the answer corresponds to. i want to display the answers in separate columns based on which question it corresponds to. Each column should be filled with the...

View Answer   |  May 5 2009  4:20 PM GMT
CASE statement, NULL, SQL Query
asked by Bananahead

  60 pts.

Viewing distinct records in a SQL query result

I have a set of records in a SQL query result. I only want to see one record, per the data field "ID". I am getting 2 records for some ID's, as there is one field that is different in the 2 records. This happens even if I start the query out with SELECT, DISTINCT, and then all of the fields I...

View Answer   |  Apr 3 2009  5:48 PM GMT
SQL Server Query, SELECT statement, SQL Query
asked by SQL Server Ask the Experts

  2420 pts.

How do I limit my SQL output to one record per student?

Current resuls: Student ID: Guardian 2 Joe 2 Mary 3 Goldie 4 JIm Needed results: Student ID: Guardian 2 Joe 3 Goldie 4 Jim

View Answer   |  Apr 3 2009  3:51 PM GMT
SQL Query, SQL Output, SQL Records
asked by Richieg

  5 pts.

SQL query for obtaining answers

Table student containing 2 columns,Join date,Employee name. Under join date 4 rows r ter =1-jan-2008,2-feb-2008,3-mar-2008,4-feb-2008.Under Employee name 4 difeerent names jaison,robin,binoy,rahul Result set is, Table containing 4-column name=jan,feb,mar,april,,beneath these months count is...

View Answer   |  Mar 30 2009  5:08 PM GMT
SQL, SQL Query
asked by Frs

  20 pts.

Connectionstring for paradox db password protected

Hello everybody, Searching for answers I've found this insteresting page!! I've created a SQL query to a paradox database, it works fine with a non- password protected table: Provider=MSDASQL;Persist Security Info=False;Mode=Read;Extended...

View Answer   |  Mar 26 2009  4:34 PM GMT
SQL Query, ASP, SQL Database
asked by Starbasestarfleet

  20 pts.

Subtracting two numbers

Hi Using SQL, how can I subtract two values for the same parameter received at different times say 1am and 1:30am so sql to do value(1:30am)-value(1am)=? Regards

View Answer   |  Mar 25 2009  3:38 PM GMT
SQL, SQL Query, SQL macros
asked by Shajju

  10 pts.

SQL query for same phone number

I have 3 columns phone number, users and locations I would like to see only the name and phone numbers of the users that are calling the same phone number Not quite sure how to represent this in a SQL Statement Thank you very much for your assistance

View Answer   |  Mar 8 2009  1:07 PM GMT
SQL, SQL queries, SQL Query
asked by Iamnfo

  5 pts.

two dimentional output

I have a table. The structure looks like this: id(pk) year col1 col2 date 1 2008 50 60 feb09 2 2008 40 70 feb10 3 2009 60 80 feb23 4 2009 50 70 feb24 5 2008 40 80 feb26 I have no idea how to write a sql query to output a table which...

View Answer   |  Feb 17 2009  5:53 PM GMT
SQL tables, SQL Query, Two-dimensional Output
asked by Zhao

  5 pts.

1 - 20 of 84
<<PREVIOUS 1|2|3|4|5 NEXT>>