Web 2.0 Style Software Testing Management System- any suggestions?
Hello, we’ve just introduced our new <a href=”http://www.gurock.com/testrail/”>test case management</a> software <a href=”http://www.gurock.com/testrail/”>TestRail</a>, which comes with all the features you mentioned and will be available for an affordable one-time payment later this year. There are also other tools out there, such as the one mentioned in the previous answer: <pre>Hey, no doubt there are many [...]
View Answer
| July 16, 2009 2:32 PM
Software Development Life Cycle, Software QA, Software Quality Assurance, Software quality management, Software testing, Software testing tools, Test management, Test management system, Web 2.0
Hello, we’ve just introduced our new <a href=”http://www.gurock.com/testrail/”>test case management</a> software <a href=”http://www.gurock.com/testrail/”>TestRail</a>, which comes with all the features you mentioned and will be available for an affordable one-time payment later this year. There are also other tools out there, such as the one mentioned in the previous answer: <pre>Hey, no doubt there are many [...]
Looking for quality test-tracking tool…..
Hello John, we’ve just introduced our new <a href=”http://www.gurock.com/testrail/”>test management</a> software <a href=”http://www.gurock.com/testrail/”>TestRail</a>, which comes with automated dashboards, including test progress, status and activity and more. We are still looking for feedback on the tool, so please take a look. Previous Answer: <pre>Hey, why don’t you try new tool Zephyr 2.0, which is the only [...]
View Answer
| July 16, 2009 2:29 PM
Defect Tracking, Quality assurance, Software Quality, Software testing, Test management, Test management system
Hello John, we’ve just introduced our new <a href=”http://www.gurock.com/testrail/”>test management</a> software <a href=”http://www.gurock.com/testrail/”>TestRail</a>, which comes with automated dashboards, including test progress, status and activity and more. We are still looking for feedback on the tool, so please take a look. Previous Answer: <pre>Hey, why don’t you try new tool Zephyr 2.0, which is the only [...]
how to istall jboss in windows?
Hi There is a documentation on WWW.JBOSS.ORG,it will guide you
View Answer
| July 16, 2009 9:46 AM
JavaServer Pages, JBoss, JSP
Hi There is a documentation on WWW.JBOSS.ORG,it will guide you
browsing of website
You have put the different ip address range. If you network support that? Try to put one subnet network ip range in your web mail server. If you want more help then please visit at: www.iyogi.net
View Answer
| July 16, 2009 6:41 AM
Domain redirection, URL redirection, Web development
You have put the different ip address range. If you network support that? Try to put one subnet network ip range in your web mail server. If you want more help then please visit at: www.iyogi.net
PL/1 support on IBM i
Hi, The following HLL are not supported on System i since V5R3. AS/400 BASIC AS/400 Pascal AS/400 PL/I RM/COBOL-85 for the AS/400 Regards, Wilson
View Answer
| July 15, 2009 9:56 PM
AS/400, IBM AS/400, PL/1, PL/I
Hi, The following HLL are not supported on System i since V5R3. AS/400 BASIC AS/400 Pascal AS/400 PL/I RM/COBOL-85 for the AS/400 Regards, Wilson
I have code for search button which only access on table in databaseI want sql query which access All tables in database.Iam pasting following code
There is no single SQL query which will select all data from all tables that matches your query. You’ll need to manually query each table you need to.
View Answer
| July 15, 2009 5:33 PM
VB.NET
There is no single SQL query which will select all data from all tables that matches your query. You’ll need to manually query each table you need to.
sql in C#
By running the sp_detach_db and sp_attach_db stored procedures.
View Answer
| July 15, 2009 5:25 PM
C#, Database Files, SQL Server database
By running the sp_detach_db and sp_attach_db stored procedures.
slow update Query(Primary Key)
Both auditdata and a_sns should generally have an index on their id column if your are joining based on these columns. There are exceptions. If there is an index on both columns, the next best thing to do would be to run an explain plan on the sql query to find out what the optimizer [...]
View Answer
| July 15, 2009 4:18 PM
SQL, SQL performance, SQL Query
Both auditdata and a_sns should generally have an index on their id column if your are joining based on these columns. There are exceptions. If there is an index on both columns, the next best thing to do would be to run an explain plan on the sql query to find out what the optimizer [...]
using barracuda as edge server
Can you be more specific? What is your Barracuda model? what is your actual connection setup/routing? With all due respect to your experience, is Barracuda dasied to your mail server? Is Spam Filtering Enabled? are you using the system defaults (Activated with Yes/No option)? You may have to manualy set your black list for those [...]
View Answer
| July 15, 2009 3:51 PM
Barracuda, Exchange 2007, Round Robin
Can you be more specific? What is your Barracuda model? what is your actual connection setup/routing? With all due respect to your experience, is Barracuda dasied to your mail server? Is Spam Filtering Enabled? are you using the system defaults (Activated with Yes/No option)? You may have to manualy set your black list for those [...]
iseries – Display file – Unicode
Refer IBM Infocenter documentation on Display files for Unicode considerations. <a href=”http://publib.boulder.ibm.com/infocenter/iseries/v5r3/index.jsp?topic=/rzakc/rzakcmst02.htm”> Appendix C
View Answer
| July 15, 2009 2:49 PM
Character encoding, iSeries development, Multilingual support, Unicode
Refer IBM Infocenter documentation on Display files for Unicode considerations. <a href=”http://publib.boulder.ibm.com/infocenter/iseries/v5r3/index.jsp?topic=/rzakc/rzakcmst02.htm”> Appendix C
How do I use the serial port in Sun virtual box with Windows XP
You can try using this path and replace the * with a number integer /dev/ttyS* The way I configured the Hosts COM1 in my VM was to assign the “Port Number” for my VM as ‘COM2′ and configured the “Port Mode” as ‘Host Pipe’ (leave Create Pipe check box unchecked). After doing this the “Port [...]
View Answer
| July 15, 2009 2:27 PM
COM1, Port, Serial ports, Sun VirtualBox, Sun VM, Virtual Machines, VM
You can try using this path and replace the * with a number integer /dev/ttyS* The way I configured the Hosts COM1 in my VM was to assign the “Port Number” for my VM as ‘COM2′ and configured the “Port Mode” as ‘Host Pipe’ (leave Create Pipe check box unchecked). After doing this the “Port [...]
Variables in T-SQL
The alert is being generated because you have Quoted Identifiers off when you are running it. Remove the double quotes and replace them with square brackets. In SQL Server the double quote isn’t the default separator. This would make your code look more like this. <pre>DECLARE @tblName varchar(30) SET @tblName = CONVERT(VARCHAR(20),GETDATE(),112) + ‘Table’ DECLARE [...]
View Answer
| July 15, 2009 9:43 AM
SQL, T-SQL
The alert is being generated because you have Quoted Identifiers off when you are running it. Remove the double quotes and replace them with square brackets. In SQL Server the double quote isn’t the default separator. This would make your code look more like this. <pre>DECLARE @tblName varchar(30) SET @tblName = CONVERT(VARCHAR(20),GETDATE(),112) + ‘Table’ DECLARE [...]
Field in crystal reports duplicating lines from quote
Well, obviously the View creates those extra line items because you have several notations per quote. You say that you want to suppress those extra line entries. Does this mean that you are not interrested in those extra notes at all? If so, you can modify QUOTE_Binary_to_notes: <pre>SELECT TYPE, n.OWNER_ID , CONVERT(varchar(8000), CONVERT(binary(8000), NOTE)) AS [...]
View Answer
| July 15, 2009 1:00 AM
Crystal Reports, Crystal Reports XI, SQL Server 2000, Visual Manufacturing, Windows XP
Well, obviously the View creates those extra line items because you have several notations per quote. You say that you want to suppress those extra line entries. Does this mean that you are not interrested in those extra notes at all? If so, you can modify QUOTE_Binary_to_notes: <pre>SELECT TYPE, n.OWNER_ID , CONVERT(varchar(8000), CONVERT(binary(8000), NOTE)) AS [...]
QA – Data Migration Testing
It’s always a good idea to get QA personnel involved in any project as early on as possible, including data migrations. Even data migrations that may appear to be simple and straightforward conceptually can quickly become complicated as analysis is done of the source data and how it maps to the target system / database. [...]
View Answer
| July 14, 2009 7:45 PM
Data migration, Data Migration Testing, QA, Quality assurance
It’s always a good idea to get QA personnel involved in any project as early on as possible, including data migrations. Even data migrations that may appear to be simple and straightforward conceptually can quickly become complicated as analysis is done of the source data and how it maps to the target system / database. [...]
How to clear asp routing table on Cisco ASA
It should be: clear arp Link provided: http://www.cisco.com/en/US/docs/security/asa/asa80/command/reference/c1.html#wp2112142
View Answer
| July 14, 2009 5:42 PM
ASP, Cisco, Cisco ASA
It should be: clear arp Link provided: http://www.cisco.com/en/US/docs/security/asa/asa80/command/reference/c1.html#wp2112142
format cell based on contents using VB
Right click on the tab you wish to create the color coding on. Paste the following: <pre> Option Explicit Private Sub Worksheet_SelectionChange(ByVal Target As Range) Dim test As Integer, results As Integer test = Cells(ActiveCell.Row, 1).Value ‘Finds the row number of the cell you edited Select Case test ‘changes the color of column B, of [...]
View Answer
| July 14, 2009 5:10 PM
Conditional statements, Excel VBA, VBA, Visual Basic for Applications
Right click on the tab you wish to create the color coding on. Paste the following: <pre> Option Explicit Private Sub Worksheet_SelectionChange(ByVal Target As Range) Dim test As Integer, results As Integer test = Cells(ActiveCell.Row, 1).Value ‘Finds the row number of the cell you edited Select Case test ‘changes the color of column B, of [...]
Connection of Crystal Report 2008 with VB6.
You need to purchase <a href=”http://www.sap.com/solutions/sapbusinessobjects/sme/reporting/visualstudio/index.epx”>Crystal Reports for Visual Studio .NET</a> or Crystal Reports Developer Advantage licenses.
View Answer
| July 14, 2009 12:11 AM
Crystal Reports 2008 controls, Database connectivity, SQL Server 2000, VB 6, Visual Basic 6
You need to purchase <a href=”http://www.sap.com/solutions/sapbusinessobjects/sme/reporting/visualstudio/index.epx”>Crystal Reports for Visual Studio .NET</a> or Crystal Reports Developer Advantage licenses.
DO…LOOP and IF ELSE THEN statements
well there are other ways of writing it, it depends on what programming language your using?to answer your question,its not just the “DO..and IF ELSE THEN STATEMENTS” when creating a basic program..did you ever tried using an “Object Oriented Programming” method acronym “OOP” that would solve your problem
View Answer
| July 12, 2009 5:35 AM
Accumulators, Counters, DO LOOP statement, IF ELSE statement, LOOP statement
well there are other ways of writing it, it depends on what programming language your using?to answer your question,its not just the “DO..and IF ELSE THEN STATEMENTS” when creating a basic program..did you ever tried using an “Object Oriented Programming” method acronym “OOP” that would solve your problem
*** instead of character or numeric
well you’ve to substitute the characters you’ve type by an asterisk character..well it all depends on how your program it.
View Answer
| July 12, 2009 5:26 AM
Asterisk Password Field, Development
well you’ve to substitute the characters you’ve type by an asterisk character..well it all depends on how your program it.
With an Access form based on 1 table, can I have info from a related table automacially appear based on linked field?
Say, you have two fields – id and name. Insert formula in the name field : <pre>=DLookUp(“[vendor name]“;”Vendor”;”[vendor id]=” & [id])</pre>
View Answer
| July 11, 2009 7:11 PM
Access 2007, Access Database, Access forms, Database design, Microsoft Access
Say, you have two fields – id and name. Insert formula in the name field : <pre>=DLookUp(“[vendor name]“;”Vendor”;”[vendor id]=” & [id])</pre>





