This is not clear enough, at least for me. I’m not sure whether you want to get records like ‘cleaning’ or not. If you want to get only records containing the word ‘lean’, then you should use something similar to this: <pre>SELECT name FROM table WHERE name like ‘lean %’ or name like ‘% lean’ [...]
Is SQL Server already installed? What is in the connection string when you are trying to connect? this is my connect function to connect with database, I think there is problem with this coding. Please can you help. Public Sub connect() sconn = “Data Source=SUJAL;Initial Catalog=staff;User ID=sa;Password=longtail” scon = New SqlClient.SqlConnection(sconn) scond = New SqlClient.SqlCommand [...]
Hi, If you have fields defined, then it’s not really a “flat” file anymore. I can’t honestly think of what you gain or lose by doing this, unless you’re going to define the file completely with every possible field. If you need to access data in position 2-3 and you don’t have that position defined [...]
replace de disign of you database to a 6.5 template. it should work **ADDED 02/03/09** If the error message is correct, my guess is you are using COM from MS Access to create a backend Notes/Domino document, then using the Send method to send it. However, you are likely setting the first parameter of the [...]
The only way to truly optimize performance is to monitor (using perfmon/profiler) and test. You need someone with the expertise to do this, or someone who can learn the rudimentary tools and give it a shot. But, I would recommend either hiring a consultant (I can give some recommendations) or maybe using Microsoft’s “health checkup” [...]
That error usually arises when you try to access a non-existent element on a collection. To debug this, you could place all the code inside the for loop in an if-then-else block to make sure you are referencing only existent elements. Something like this: <pre>for i in g_change_tab.first..g_change_tab.last loop if <b>g_change_tab.exists(i)</b> then select count(*) into [...]
You can’t call database triggers directly. You should use a stored procedure instead. You can call stored procedures the same way you do for Forms local procedures. Please provide more information if you need further help.
Your question is not clear enough, at least for me. You should be able to connect from any version of Visual Basic to an Oracle database.
Are you using the same database user when connecting from Crystal than when connecting from Access ? It could be a problem of missing privileges or synonyms.
Really, you, Aditi, have a good skill for SAP. With your knolewdge of Java it is possible to be SAP Portal Developer or XMII Developer. But if development is not interested for you any more you always could try to be a SAP tester.
A good understanding of network fundamentals will help you. The Cisco certifications are vendor specific but will teach you a lot of foundational knowledge. The CompTia Network+ is not vendor specific and will help you also. A good mix of both vendor-specific and general education will be the best plan. CompTia’s Security+ is a good [...]
I always put my variables in a seperate table (like printpara). I attach it in the report query so that I have these on every line in my query and so I can put it where I want on my report. Like in your exemple, i would put it in the page header. I you [...]
My list of overused IT buzzwords/acronyms: - Smart Phone - Mobile Broadband - Virtualisation - REST - AJAX Nandu:-) _________________________________________________________________ Might I ADD: Value – Add! …and Is there a better way to say Solutions? Please, no more Cloud Computing? GREEN anything … Bailouts and Financial Crisis… Bush Bashing ! Bob VL _______________________________________ Not really [...]
Riaan, In Access 2007, try working with the table in Pivot table view. Open the table, go to the Views group, click the arrow and select Pivot table. Then, for example, you could add the Date field to the row field, then add the Data field you want to average to the detail area. You [...]
Rmason It’s been a few years and it wasn’t 2008. But, as I remember it …. Need client access installed on the server system — it contains ODBC driver If you go to create a new data source you should see Client Access ODBC driver I don’t remember any big issues creating a DTE or [...]
Here is a good site to look up <a href=”http://www.itjobswatch.co.uk/jobs/uk/exchange%20administrator.do”>global pay scales</a>. Good luck to you!
Select Top 1 * From (Select Top 3 * From EmployeeTable Order By Salary) Order By Salary Desc Another way to do this would be to use the rank functionality (which will bring back all employees that have the 3rd highest salary, where employees might have the same salary): select employee, salary from (select employee, [...]
Are there any local universities in the area? Because a lot of the larger universities will have a working professional program and often times they will even work with your current employer to help pay for it. Just a thought. Hope this helps! -Schmidtw I worked as an Admissions Representative for DeVry and Westwood College. [...]
A lot of companies are looking for linux administrators. A CCNA will help because that will cover the networking requirement. Don’t discount IT management. Companies always require a fresh influx filling bottom management ranks, and people who can progress. Price Waterhouse Cooper and Carnegie-Mellon’s CyLab have recent surveys that show the senior executive class to [...]
What error message or code (ORA-XXXX) are you getting ? is it ORA-01752 ? Can you post your view’s query here (so we can see how complex the view is) ?





