Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: manohars
  • Content: Threads
  • Order by date
  1. manohars

    Encrypt 1.5 million records and decrypting.

    Hi, I have a requirement, where the database data should be encrypted during storing and decrypted during retrieving. What are the ways or tools available for this. Also, kindly let me know of the ways to improve performance in this case. I urgently need these information. Thanks in...
  2. manohars

    Analysis Services 2000 installation on Windows 2003 standard edition

    Installation of Analysis Services 2000 on Windows 2003 standard edition fails. Whereas, it installs correctly on Windows 2003 Enterprise Edition. Is there any workaround for installing analysis services on Windows 2003 standard edition. Thanks in Advance, Manohar
  3. manohars

    How to recover the dumped SQL Server dump

    In the production floor, database server dumped. When we put a big transaction, it didn't complete, though it was tried repeatedly. After a while, when SQL Server service is restarted, the same transaction worked perfectly. What could be reason for this. Thanks in Advance, Manohar
  4. manohars

    How to replace an invalid character in the column data?

    How to replace a an invalid character(as per business rules) in the column data using a query? For example, in our application, the following characters are valid. '[^-\^_<>`~{} :[",#$%&!?;+0-9a-zA-Z@/*().]' I want to replace all the characters, which don't belong to this character set...
  5. manohars

    How to use DTSTransformStat_DeleteQuery?

    How to use DTSTransformStat_DeleteQuery to delete rows from a table? Thanks, Manohar
  6. manohars

    How to get the stored proc, xp_smtpsendmail, installed?

    How to get the stored proc, xp_smtpsendmail, installed? Thanks in Advance, Manohar
  7. manohars

    Storing the table data in the XML format into a variable

    Is it possible to get the table's data in the XML format, using FOR XML, and store it in a variable. How can this be done. Thanks in Advance, Manohar
  8. manohars

    Log File Crash

    Data files and log files are kept in separate disks of my database. If the disk which contains log files crashes, will it stop the database. What can be done in this situation to continue using the database. Thanks in Advance, Manohar
  9. manohars

    Data File Crash

    Data files and log files are kept in separate disks of my database. If the disk which contains data files crashes, is it possible to take the log backup and then recover the database to the point of failure. Thanks in Advance, Manohar
  10. manohars

    Server Crash

    In case server crashes, is it possible to recover the database to the point of failure with the help of log files? In that case, if the last transaction caused the db crash, is it possible to recover the db till the previous transaction(or the time upto that). Thanks in Advance, Manohar
  11. manohars

    When a new login is created, what databases, it has access to?

    When a new login is created, what databases, it has access to? When I created a new login(without adding it to any db), it had access to pubs and northwind databases, apart from master, msdb and tempdb databases. But it didn't have access to any other databases. Even if public role has access...
  12. manohars

    Is it possible to show both attributes and elements using OPENXML

    Is it possible to show both attributes and elements using OPENXML? How can this be done? Thanks, Manohar
  13. manohars

    What is the difference between different flag values in OPENXML

    What is the difference between different flag values in OPENXML, 0, 1, 2, 8. Thanks, Manohar
  14. manohars

    Difference between ALL and ANY

    What's the difference between ALL and ANY? Thanks in Advance, Manohar
  15. manohars

    Replay Trace

    What is the use of replaying the trace, if I connect to a different server and database, during replaying. How can I debug a stored procedure or function, during replay? Thanks in Advance, Manohar
  16. manohars

    Need a clarification in a query

    I have written the following query to list the rows which have invalid characters in that column SELECT * from titles where convert(varchar(255), [title]) like '%[^-\^_<>`~{} :[",#$%&!?;+0-9a-zA-Z@/*().]%' AND convert(varchar(255), [title]) NOT LIKE '%]%' List of valid characters are...
  17. manohars

    can I identify the trigger within the trigger code?

    Suppose, I write a single trigger for all the transactions, INSERT, UPDATE, DELETE. Is it possible to identify, which trigger(INSERT, UPDATE or DELETE) fires this trigger code? Thanks in Advance, Manohar
  18. manohars

    Firehose cursor

    What is a firehose cursor? When 2 rows in a table have the same set of values and when we try to delete one of the rows, why it says "Cursor is in firehose mode". Thanks, Manohar
  19. manohars

    Can user-defined functions be called from the application.

    Is it possible to call a user-defined function from a front end or middle-tier component written in vb.net or c#.net. If so, is it possible get the return value, which is either scalar or a table? Thanks in advance, Manohar
  20. manohars

    To get the rows with invalid characters.

    I have to declare a cursor to get list of rows, which don't contain the following characters in a column. exec('DECLARE curData CURSOR for SELECT count(*) from ' + @TableName + ' where convert(varchar(255), [' + @ColName + ']) like ''%[^\\-\\^_<>`~:{}\",#$%&!?;+0-9a-zA-Z@/*()\\.\\-\\b\\\\...

Part and Inventory Search

Back
Top