Problem of inability to submit form when browsing! Please help
It sounds like problem in ur cookie / tmp. Try this, goto Run > %tmp% and press enter, it shows a box select all by pressing ctrl A, then press shift + Del. another is clear ur cookie by selecting Tools > Internet Options (for IE) and for Firefox click Edit > Preferences. Hope it [...]

View Answer   |  October 6, 2010  4:39 AM
Cache error, Chrome, Cookies, firefox, Internet Browser, Internet Explorer
answered by:
22,035 pts.

What is primary difference between Retesting and Regression testing
Regression Testing means to test the entire application to ensure that the fixing of bug will be affecting anywhere else in the application while Retesting means executing the same test case after fixing bug to ensure the bug fixing…Thanks _____________________________________________________ Regressing testing is testing all the existing features in an application to make sure they [...]

View Answer   |  October 5, 2010  1:42 PM
Regression testing, Retesting, Software Quality, Software testing, Software testing methodologies
answered by:
2,500 pts.

answered by:
15,485 pts.

Parameter in select statement
Something like this <b>might </b>work: <pre>… SET @CityId = <b>’23,45,85,86′</b> … SELECT VendorId From Vendors WHERE CountryId = @CountryId AND <b>CHARINDEX(‘,’+CAST(CityId as varchar)+’,',’,'+@CityId+’,') > 0</b> ORDERBY CreatedDate</pre> But it would be inefficient: If you have an index on the CityId, it won’t be used. If the number of possible values in the @CityId list has [...]

View Answer   |  October 4, 2010  10:27 PM
SELECT statement, SQL Parameters, SQL statements, T-SQL
answered by:
63,535 pts.

In which order should the different types of testing be performed in Agile Testing?
All the types of tests that are done in a traditional methodology such as the waterfall model can be done in an agile model as well. Agile teams will define what testing is required just as traditional teams define what test efforts are needed. There is nothing about an agile environment that would prevent any [...]

View Answer   |  October 4, 2010  7:18 PM
Agile testing
answered by:
2,500 pts.

When should non functional test be performed in agile testing?
It really depends on what type of testing. If we are talking about load, automation, etc. Then we have to have stable environment where the scripts can be executed. Also those requirements have to be defined to some extend to create baselines. Security testing is something that can be executed even if not all the [...]

View Answer   |  October 4, 2010  7:12 PM
Agile testing
answered by:
2,500 pts.

Separate testing team in Agile
One way to do it is to have developers working by pair. Meaning, there’s always one who develops, one who reviews / tests the other one’s code. So in our case, the tester is not separated from the developer. Then, you have the customer review that finalize the user acceptance tests. Hope this helps, Joelle [...]

View Answer   |  October 4, 2010  7:07 PM
Agile, Agile development, Agile software development, Software testing, Software testing models, Testing software
answered by:
2,500 pts.

Measuring successes in Quality Assurance department
Are you looking for measuring QA processes or actual test process. Quality control and QA are entirely different processes. If you asking about measuring how successful testing is then there are various metrics you can run like defect denisty, defect removal rate, etc.

View Answer   |  October 4, 2010  5:51 PM
QA, QA testing, Quality assurance, Quality assurance managers, Quality assurance success measures, Software testing
answered by:
2,500 pts.

Upgrading from SQL Server 2000 to SQL Server 2005
It can be done in place. It should be done in a test environment to ensure that there are no issues. Make sure to update the statistics on the SQL 2005 database after the upgrade to ensure that everything works correct. The SQL 2005 engine can not use the SQL 2000 statistics.

View Answer   |  October 4, 2010  4:18 PM
SQL, SQL Server, SQL Server 2000, SQL Server 2005, SQL Server 2005 upgrade, SQL Upgrades
answered by:
64,520 pts.

Row by Row Stored Procedure in SQL Server 2008 R2
You could do it using the <a href=”http://msdn.microsoft.com/en-us/library/ms190307.aspx”>sp_send_dbmail procedure</a>. Here’s a <b>simplified </b>example that should get you started: <pre>CREATE PROCEDURE yourProc AS DECLARE @name VARCHAR(50) DECLARE @id INTEGER DECLARE yourCursor CURSOR FOR SELECT id,name FROM yourTable WHERE Days < 10 AND Emailed = 0; OPEN yourCursor FETCH NEXT FROM yourCursor INTO @id,@name WHILE @@FETCH_STATUS = [...]

View Answer   |  October 4, 2010  2:17 PM
SQL, SQL Server 2008, SQL Server 2008 R2, SQL stored procedures, Stored Procedures
answered by:
63,535 pts.

Infinite recursion in SQL Server 2000
infinite recursion and query optimization are pretty much mutually exclusive. If you can post the table design and the query (or a simplified version of it) it might help.

View Answer   |  October 2, 2010  6:04 PM
Query optimization, Recursion, SQL Query, SQL query optimization, SQL Server 2000
answered by:
64,520 pts.

Which is best option CRM or SharePoint
A CRM isn’t a collaboration site, so choosing between a CRM or SharePoint for a document collaboration website, SharePoint would be the correct choice.

View Answer   |  October 2, 2010  5:57 PM
.NET, Collaboration tools, CRM, SharePoint, SharePoint collaboration
answered by:
64,520 pts.

Get a legacy application working on Windows 7 so we can upgrade.
I would guess that if you have Windows 7 Ultimate you should be able to run the Sage program in XP mode in windows 7. I had same problem with another brand of ERP/CRM software and it runs perfect using the XP mode under Windows 7. ——– The Windows XP Mode will be what you [...]

View Answer   |  October 2, 2010  5:54 PM
Legacy applications, MAS 500, Sage, Windows 7, Windows 7 upgrade, Windows Upgrades, Windows XP
answered by:
64,520 pts.

How do I create a trigger in VB 6?
According to Carlosdl, ur q’s is not clear here or u have to provide more details. Though, I provide an eg, hope it will help u. 1. Dim myDate As Date, ExpiryDate As Date 2. rsDates.Open “SELECT TheDate FROM MyTableDates”, cnDate, adOpenStatic, adLockOptimistic 4 MyDate = rsDates!TheDate 6 ExpiryDate = Now 7 If MyDate < [...]

View Answer   |  October 1, 2010  11:31 AM
Triggers, VB, VB 6, Visual Basic, Visual Basic 6
answered by:
22,035 pts.

Java files compilation
Assume Your Files rare A.java & B.java B is in “D:JavaB.java” A is in “D;:A.java” You access object of B class in A class. Yo can compile by writing >javac A.java JavaB.java Also you can compile all the files in D:Java >javac A.java Java*.java

View Answer   |  October 1, 2010  11:26 AM
Java, Java classes, Java code, Java developers
answered by:
15 pts.

Operating DOS through excel(VB or macro).
Your q is not clear here. Did u tried to open a dos box by Excel or u tried to open excel from. Please provide more information about that. Dear Wiki , i am trying to execute a command in DOS from excel, DOS window is already opened on the Desktop. Plz solve my problem//u [...]

View Answer   |  September 30, 2010  7:06 PM
Access multi-table reports, DOS, DOS program, excel, Excel macros, Visual Basic
answered by:
65 pts.

web-based GPS tracking application development with asp.net
I have the same question.. did you ever find a solution for this? all of the open source GPS web apps are for linux systems. thanks

View Answer   |  September 30, 2010  6:56 PM
Application and Web development, ASP, ASP.NET, Database, SQL, Visual Web Developer 2008, Web development
answered by:
15 pts.

Difference between QM Query and traditional query
An important difference in joining files exists between the two queries that just dawned on me. This was the cause of the QM query returning different data: Where the traditional query is set up to join “matched records with primary file”, the QM query was defined as just a JOIN. When I changed the QM [...]

View Answer   |  September 29, 2010  7:35 PM
Database Files, Query, Query Management Query, Query Manager
answered by:
230 pts.

QTP Script for Data Driven Testing using Notepad
Dim fso, f , Readline_file,wordcount,i i=0 Set fso = Createobject(“Scripting.FileSystemObject”) ‘Set Myfile = fso.OpenTextFile (“g:new.txt”, ForWriting , True) ‘Set f = fso.CreateTextFile (“g:new2.txt”, True) ‘f.writeline “world hello” ‘f.writeline “Google 05121974″ Set f = fso.OpenTextFile(“g:new2.txt”) do until f.AtEndOfStream = true Readline_file = f.readline wordcount = split(Readline_file,” “) For each i in wordcount If (i = fine) [...]

View Answer   |  September 29, 2010  6:55 PM
Data-driven testing, QTP, QTP script error handling, QTP Scripting, QuickTest Professional
answered by:
FSO
15 pts.

Debugging Oracle Form in 10g
-In forms builder right click on the line of code where you want to start debugging, and select ‘Insert/Remove’ breakpoint. -Go to the “Debug” menu option and click on “Debug Module” -When the breakpoing is reached, the debug console will appear. It will let you see variables and some other runtime values. -You can go [...]

View Answer   |  September 29, 2010  6:45 PM
Debugging, Oracle Form Builder, Oracle Forms, Oracle Forms 10g
answered by:
63,535 pts.