Yes there is a way withing excel itself, if your up on your visual basic code you can enter the editor via the menu or i believe its F11 from here you can take the contents of a cell, break it up and change values in to the chr value. One easy way is to [...]
This is the anwser of IBM to a very similar question: I have my own style sheets that I want to use for my reports. How do I make them available from Report Assistant? In Report Assistant, on the Reporting options tab, you can specify a style sheet under the Apply an existing WebFocus Stylesheet [...]
You will have to create a link between your AS/400 and SQL server first using ODBC. Then, create an SQL server database having a file definition corresponding to your AS/400 data description and then write a stored proc to insert informations into those files based on the external AS/400 file.
I think the issue of H1-B visas got out of proportion and become a political issue rather than a business issue. I still recall a conversation I had with an immigration lawyer few years back when the total number of visas issued annually was around 120,000, he said “these visas never get used up.” Although [...]
Hi, I think you’ve got it covered without referencing A and C to D. Regards, Martin Gilbert.
It depends on what type of organization you would like to join when you graduate. No matter what, you will need to show real-world experience of addressing issues. Experience counts. Education is good but unless you have had some practical experience in troubleshooting support or design, you may not easily find what you really want [...]
Hi, Please be specific on language…mention now. You can access CSV directly using File.Open Alternately using ODBC. Tell me your choise while I cook the answer Regards, CarolNandini
Well… That’s a tough one! I guess nobody can answer this one for you but yourself! You can have very good careers in all these domains. I guess the right question to ask yourself is what do you prefer to do? Automation, production planning or quality control? Joelle Hi As Joelle has said, you need [...]
Hi, In SQL, you can use GROUP BY … HAVING. To get a distinct list of the duplicate numbers: <pre> SELECT employee_number FROM table_name GROUP BY employee_number HAVING COUNT (*) > 1; </pre> To find all the records that have one of those numbers, use the IN operator with the query above: <pre> SELECT * [...]
You are really the only one who can answer this. The big question is, do you want to move out of a technical role and into a business role? If you do then this might be the right leap for you. If you want to remain technical then a Vendor Management role isn’t what you [...]
The easy way to see if there is a service listening on that port is to telnet to the port. From a command prompt run telnet localhost 3306. If you get back a flashing cursor then a service is listening, If you get an error message then no service is listening. #######Added by kb3cgj############## You [...]
The whole idea behind this is to compile the new MySQL server with different TCP/IP ports and Unix socket files so that each one is listening on different network interfaces. Compiling in different base directories for each installation also results in separate compiled-in data directory, log file, and PID file location for each server. <a [...]
Not that I know of. Everytime I’ve tried to create an object in the sys schema I get an error. What’s the end result of the view you are trying to create? SQL 2005 has tons of data exposed via the DMVs.
You will have to build the whole SQL statement into a variable in one go then execute it. The INNER JOIN is implied e.g. select x.a from x, y where x.rowid=y.rowid This is an inner join and will only return rows where there is a reference in both tables
What you want is actually a stored procedure not a trigger. Triggers can not be fired off on schedule, while stored procedures can. First you need to write your select statement which simply returns the data that you need to load into the destination table. The query will look something like this. <pre>SELECT IdField, AVG(NumericField) [...]
When data is entered into a column of the wrong data type an error will be returned already. For example is a column has the data type of INT and you try to put text data into the column the database will return an error message. If you want a text field and you add [...]
Certifications are a great way to show what you know, however without a few years of experience you won’t be able to move out of the entry level position. As you are already working in help desk, that is an excellent first step. From help desk moving into a NOC position is a good next [...]
This would be a stored procedure not a trigger. You can not schedule triggers to run on a schedule. Create a stored procedure with the code needed to calculate the averages and then use the SQL Server Agent to schedule the stored procedure to run nightly.
When you fail over to the mirror, once the primary server is back online SQL will automatically being feeding the transactions back. When you look at the databases in the UI it will say if it’s mirroring or synchronized. If it says that it is synchronized then there are no pending transactions to be sent. [...]
Did you try to download SQL Server 2000 Driver for JDBC SP3 or SQL Server 2000 Driver for JDBC SP2? If not, you can find them here: http://support.microsoft.com/default.aspx/ph/2852?cid=C_48273 Thanks! Joelle





