clara


{ City } hyderabad
< Country > india
* Profession * student
User No # 61953
Total Questions Posted # 169
Total Answers Posted # 38

Total Answers Posted for My Questions # 81
Total Views for My Questions # 609457

Users Marked my Answers as Correct # 243
Users Marked my Answers as Wrong # 27
Questions / { clara }
Questions Answers Category Views Company eMail

What is Mutex error in Triggers?

SQLServer Errors 2485

What is the use of NOLOCK locking hint?

SQLServer Errors 1364

What are the required/mandatory parameters that have to be passed with RAISEERROR statement?

1 SQLServer Errors 2791

What severity level errors are managed in TRY-CATCH block?

SQLServer Errors 1789

What are row constructors?

1 SQLServer Errors 2816

What is SCD (Slowly Changing Dimensions)? What are its types?

SQLServer Errors 2173

How many types of internal joins are there in SQL Server?

SQLServer Errors 2383

What is live lock, deadlock and what is Lock escalation?

SQLServer Errors 1941

On which table the SSIS SQL Server logs are stored?

1 SQLServer Errors 3197

Difference between Bookmark lookup & RID lookup?

1 SQLServer Errors 4121

How will you Handle Error in SQL SERVER 2008?

SQLServer Errors 1939

What is the meaning of lock escalation and why/how to stop this?

SQLServer Errors 2160

When you get following error? Error 3154: The backup set holds a backup of a database other than the existing database.

SQLServer Errors 2064

Does DBCC CHECKDB requires DB to be in SINGLE_USER mode?

TCS,

2 SQLServer Errors 2715

How to view the error log for any specific instance?

SQLServer Errors 1942


 [1]   2   3   4   5   6   7   8   9   10   11   12    Next



Answers / { clara }

Question { 2791 }

What are the required/mandatory parameters that have to be passed with RAISEERROR statement?


Answer

message _id or message_str
severity, and
state

Is This Answer Correct ?    1 Yes 0 No

Question { 2816 }

What are row constructors?


Answer

New way to insert multiple records in a table with INSERT statement. Also known as Table Value Constructor.

Is This Answer Correct ?    1 Yes 0 No


Question { 3197 }

On which table the SSIS SQL Server logs are stored?


Answer

On 2005 its sysdtslog90 & on 2008 its sysssislog.

Is This Answer Correct ?    1 Yes 0 No

Question { 4121 }

Difference between Bookmark lookup & RID lookup?


Answer

 How will you check if a stored procedure with 500 line of code is running very slow? What steps will you take to optimize it?

Is This Answer Correct ?    0 Yes 0 No

Question { 3555 }

Why are memory errors hard to debug?


Answer

The first thing to understand about memory errors is why they're different from other bugs. I claim the main reason they are harder to debug is that they are fragile. By fragile, I mean the bug will often only show up under certain conditions, and that attempts to isolate the bug by changing the program or its input often mask its effects. Since the programmer is then forced to find the needle in the haystack, and cannot use techniques to cut down on the size of the haystack, locating the cause of the problem is very difficult.
Consequently, the first priority when tracking down suspected memory errors is to make the bug more robust. There is a bug in your code, but you need to do something so that the bug's effects cannot be masked by other actions of the program.

Is This Answer Correct ?    1 Yes 0 No

Question { 3322 }

what are the techniques for reducing the fragility of a memory bug?


Answer

Don't re-use memory.
Put empty space between memory blocks.

Is This Answer Correct ?    1 Yes 0 No

Question { 2129 }

is Visibroker for C++ 4.5 supported ?


Answer

Yes, Visibroker supported for C++ 4.5

Is This Answer Correct ?    0 Yes 0 No

Question { 3475 }

What is Visibroker?


Answer

VisiBroker is an ORB that offers a complete implementation of the CORBA specification. VisiBroker makes it easy for you to develop distributed, object-based client applications and servers. VisiBroker offers these important features.

Support for the C++ programming language.
Object naming.
The ability to distribute objects across a network.
Support for persistent objects.
Support for dynamic object creation
Interoperability with other ORB implementations.

Is This Answer Correct ?    0 Yes 0 No

Question { 1791 }

Explain VisiBroker Features


Answer

In addition to providing the features defined in the CORBA specification, VisiBroker offers enhancements that increase application performance and reliability.

Is This Answer Correct ?    0 Yes 0 No

Question { 1917 }

what does Visibroker's interface repository server is called ?


Answer

irep

Is This Answer Correct ?    0 Yes 0 No

Question { 2269 }

WHEN SHOULD I BE USING A COMPONENT INTERFACE?


Answer

If you need to insert/update/delete data through PeopleCode, and your PeopleCode will require replicating a lot of existing business logic that already exists in a component then a component interface is the best approach. Once you learn how to use them, they will be the fastest and most robust solution for such cases. If you are performing simple changes, then using a CI becomes overkill as there is an overhead to using a CI on both the system and on development time. Similarly, large amounts of batch processing may be too much for a CI to handle or may be considerably slower using a CI.

Is This Answer Correct ?    0 Yes 0 No

Question { 2157 }

When I create my component interface, why can't I see any Getkeys?


Answer

The search record for your component does not have any search keys defined. Go back and define search keys as these are used as Getkeys.

Is This Answer Correct ?    0 Yes 0 No

Question { 2148 }

Why are my Findkeys missing certain fields?


Answer

Findkeys are derived from search and alternate search keys on the component search record. If you have a key but it is neither a search key nor alternate search key, then it will not be available as a Findkey.

Is This Answer Correct ?    0 Yes 0 No

Question { 3248 }

When I test my component interface, why do I get a "Not Authorized" error?


Answer

Check that your component interface is included in a permission list that you have access to. Also check that you have access to all possible methods (Get, Save, Create, Cancel, Find). If you delete a component interface through application designer, it is also removed from any associated permission lists so this may be another reason why your new component interface (with the same name) is not authorized any more.
Also, make sure you are not trying to do something in your code that the CI can't do. For example, if your CI doesn't have a create method, you can't set security for it, so you will get a not authorized error if you have code that attempts to perform a create. This is because the authorization error is usually the first error to be displayed.

Is This Answer Correct ?    0 Yes 0 No

Question { 2193 }

Why does my component interface not have a Create method?


Answer

Create is only available if the underlying component allows Add mode. If it doesn't then you can't create anything in the component, and thus you can't create anything using the component interface. The create method will be disabled in the component interface properties.

Is This Answer Correct ?    0 Yes 0 No

 [1]   2   3    Next