Forum Replies Created

Viewing 15 posts - 1 through 15 (of 22 total)

  • RE: nvarchar - what is the difference?

    Thanks Brian. That is exactly what I have decided. Your answer helps!

    Neo

  • RE: Are you a "hunt and pecker" or a "typist"?

    I am a "hunt and pecker". But amazingly I have improved over the years from one finger to one finger each hand .

    Learning "typing" is still on...

  • RE: Exit if it is wrong user

    I need to add the scenario.

    I generate the script for this application and my clients install on their database servers. So, the question is not the password control but its...

  • RE: Creating Packages

    That is right. A package in Oracle can contain more than one stored procedure and function. I guess you have the answer as you have already hinted about DTS package...

  • RE: Ordering in Oracle and SQLServer

    That works but with an addition of DESC

    SELECT [name] FROM test ORDER BY (CASE WHEN [name] IS NULL THEN 1 ELSE 0 END) DESC, [name]

    Thanks for your help.

    NeoNash

  • RE: Programatic Restores

    I guess you doing a Force Restore, right?

    Or is it something else.

    Also, could you please post the code & error

    Thanks,

    NeoNash

    Edited by - NeoNash on 04/23/2002 6:33:14 PM

  • RE: Server Blocking

    Is it because the memory is shooting high? Are those four tables really huge?

    Could you please post more details.

    Thanks,

    NeoNash

  • RE: Ordering in Oracle and SQLServer

    Henrik,

    "Null" always appears at the top in SQLserver. If you have a solution to make it appear at the bottom of the list please let me know.

    Thanks,

    NeoNash

  • RE: Ordering in Oracle and SQLServer

    You are correct. Oracle is case-sensitive. That is why we have to be careful while developing applications which support both Oracle and SQLserver.

  • RE: DBadministrator vs Developer

    It is a good question. I act as both developer and DBA.

    The main problem being a developer is that unrealistic target is provided and it is expected you to...

  • RE: What rules of thumb you live by when programming?

    After logging into Query Analyzer make sure you are in the right database before issuing any query especially DDLs, and DMLs.

    This is very true when the same user shares multiple...

  • RE: Why did you decide to become a DBA/SQL Programmer?

    It is 11 years I am working with database especially Oracle. After handling so much of problem with that I started working on SQLServer. It is been more than 3...

  • RE: You just might be a DBA if.....

    Or developers write queries anyway they want and expect you to make it fly.

    NeoNash

  • RE: Trigger (Old, New)

    "deleted" and "inserted" are not exact but equivalent to Oracle's :old and :new.

    But both deleted and inserted are tables unlike :old and :new.

  • RE: Uppercase Check Constraint

    Wow! That helps.

    Thanks Andy.

    NeoNash

Viewing 15 posts - 1 through 15 (of 22 total)