I hope this was a good session. We are involved in providing online backup services to our clients. One of the things many businesses are looking for now is the ability to convert a backup disk image into a virtual machine image. This allows for quick deployment of the backup to a cloud based virtual [...]
There is the cheap and easy way that isn’t as precise as many would like and a choice of either a very difficult way or a potentially costly way but both with significant precision. Cheap and easy is by setting the QINACTITV system value to 60 along with setting the QINACTMSGQ system value to be [...]
You are recruiting for this company and you don’t want them to know that you don’t know what it is you are supposed to be looking for. Tough situation. Data structures are the way the data is stored. Even a DBMS or an RDBMS has a “structure” In one sense, data structures have algorithms built [...]
Hi Rameshsaai, According to <a href=”http://infocenter.sybase.com/help/index.jsp?topic=/com.sybase.dc00712_1500/html/mrx150db/CHDEAGBJ.htm”>Sybase’s site</a>, you need to verify that the Mirror Replication Agent is quiesced prior to migrating from Sybase ASE 12.5 to ASE 15.0. And you’ll need to refer to the Release Bulletin for the Mirror Replication Agent. I hope this helps. Em
If the contract says so, then yes, otherwise, maybe not. There are some technical details that clients might not want/need to know. Sometimes a high level architectural design may suffice. But, whether it has to be shared with the client or not, depends on what has been agreed. ———————
Some snippets here…. Also a <a href=”http://www.vbexplorer.com/VBExplorer/vb_feature/june2000/Database_Beginner_ADO_DAO.asp”>good help</a> From Mgi: <pre> Public conMyDB As New ADODB.Connection »»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»» Private Sub Form_Load() Dim rsTemp As New ADODB.Recordset If conMyDB.State = adStateClosed Then Call ConnectToMyDB End If rsTemp.Open “SELECT SomeFields FROM SomeTable”, conMyDB, adOpenDynamic, adLockOptimistic End Sub Public Sub ConnectToMyDB() If conMyDB.State <> adStateOpen Then conMyDB.Open “Driver={Microsoft Access [...]
Make sure your :MAIN_BLOCK.USER_DATE item’s data type is DATETIME and not DATE. DATE items don’t store a time component.
Typically, you would do that using the LIMIT clause, which can take 2 arguments the first being the offset of the first record to return, and the second being the number of records to return. Some examples: This would return the first 15 records from yourTable: <pre>SELECT * FROM yourTable LIMIT 0,15;</pre> And this would [...]
There are several types of documentation; end user (how to use it) doc, technical (how does it work in detail) doc, over view (how does it work) doc, individual program doc, procedural doc, data flow doc (data movement without details on its transformation), … You should find out if your work place has any standards [...]
SearchSAP has a whole section on <a href=”http://searchsap.techtarget.com/resources/SAP-training-and-certification-strategy”>SAP training and certification strategy </a>that you should check out. SearchOracle also has a great <a href=”http://searchoracle.techtarget.com/resources/Oracle-jobs-careers-and-resources”>Oracle career section</a>.
Search SAP has tips on <a href=”http://searchsap.techtarget.com/resources/SAP-training-and-certification-strategy”>SAP training and certification strategies</a>. You can also get advice from the experts at SearchOracle on <a href=”http://searchoracle.techtarget.com/answer/Pursuing-a-career-in-Oracle-Financials”>pursuing a career in Oracle Financials</a>.
Are you sure this directory will be static for individuals listed, and order, and that no person’s entry will take more than one page?
Suggest to try on Microsoft Online Service that is a business-class communications and collaboration software offering delivered as a subscription service, hosted by Microsoft, and sold with partners. These services help make it easier for customers to rapidly and cost-effectively access the most up-to-date technologies, and are designed for rapid deployment to provide customers with [...]
If you configured the VM’s network connection as ‘bridged’, you should be able to connect to the database from any network location as if it were running on a physical machine.
The text is being replaced in your MyString memory variable, but you never write the modified string to the file. You could do it creating a new file (opening it for writing) and writing each line of text you read from your original file after the needed replacement; or you could read the complete file, [...]
When you subtract two TIMESTAMP columns you get a time difference, not a date, and the resulting data type is INTERVAL DAY(x) TO SECOND(y). You could add this result to another TIMESTAMP to get a TIMESTAMP result, but I’m not sure why you would want to do that. You might want to provide some example [...]
Hi, If your class file is in your local PC and using RAD java perspective, you can run your class. RAD’s java perspective is a Java SE development tool, you don’t need to set the class path in general. Do you have your java project setup in RAD ? Are you calling your java class [...]
Are you trying to get the instance name? That can be gotten by running <pre>SELECT @@SERVERNAME</pre> If you are trying to get the database name, you already have the code to get that.
Yes you can use a 32bit driver to connect to a 64bit SQL Server.
Change the constraint declaration. It should be: <pre>CONSTRAINT security_password_pk PRIMARY KEY (user_name,user_password)</pre> (No underscore between PRIMARY and KEY) And, as Mrdenny suggests, don’t inlcude the password in the PK (if you do it won’t cause errors when creating the table, but it would nullify the purpose of the pk).





