Forum Replies Created

Viewing 15 posts - 2,596 through 2,610 (of 3,221 total)

  • RE: Get calling Procedure name in Trigger

    Thank you for the additional information

    amujtaba

    2) Other procs might be calling this update proc for the table

    This poses other questions:

    6. Do you want the name of...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Get calling Procedure name in Trigger

    amujtaba

    May I ask you to elaborate more on what you want, and the scenario that you want it in.

    1. Do you apply all updates using only Stored Procedures?

    2....

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Get calling Procedure name in Trigger

    I modified Florian.Reischl's code to

    IF (OBJECT_ID('udp_test') IS NOT NULL) DROP PROCEDURE udp_test

    GO

    CREATE PROCEDURE udp_test

    AS

    SELECT * FROM sys.procedures WHERE object_id = @@PROCID

    SELECT OBJECT_NAME(@@PROCID)...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: give me your suggestion

    In addition to Bob Hovious code you might want to read this article by Anthony Zarkin

    which includes all the necessary code to create user functions to convert numbers

    to words and...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: I'm learning SQL Server from the ground up, should I concentrate on 2008?

    EarthandAllStars

    This does not answer your original question, but since you are interested in MS training and certification - this site by MS offers training / certification at a reduced price...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Isolation levels - Database Engine

    In an effort to further explain what occurs with the SNAPSHOT and READ COMITTED Isolation using Row versioning - the following quotes were taken from

    http://technet.microsoft.com/en-us/library/ms345124(SQL.90).aspx. The use of...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Are the posted questions getting worse?

    Ninja's_RGR'us (3/4/2009)

    --------------------------------------------------------------------------------

    No offense, but if all that is required is put up a crappy blog with unverified recommendations, I can be an mvp in 7 days with 50$ out of...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: A GROUP BY question

    Reply removed since it did not answer the question properly ... sorry about that

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: <> 'text value'causing issues with NULL

    From Books On Line

    A value of NULL indicates that the value is unknown. A value of NULL is different from an empty or zero value. No two null values are...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Add two fields with space

    Select FirstName + ' ' + Last Name as Name from tbl1

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Copying Sql Table Layout

    Using Enterprise Manager

    Select the database

    Expand Tables

    Right click on the table name

    Select All Tasks

    ...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: DateTime

    This I think will give you what you need.

    -- this is just to check that the CONVERT statements are returning a DATETIME data type and not a VARCHAR

    DECLARE @Time...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: csv file upload

    Using the Surface Area Configuration.

    On the first screen select

    Surface Area Configuration for features - it is close to the bottom of the screen.

    In the next form - left frame Click...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Writing strings with chars 128-160 to an varchar column

    Might I suggest you read this from Books On Line:

    ms-help://MS.SQLCC.v9/MS.SQLSVR.v9.en/udb9/html/e123fb74-022e-4a62-9639-b2053a9b4d7e.htm

    Is it possible for you to change your columns data type from varchar to nvarchar (unicode character)?

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: HELP ME

    Just a sugestion

    /*

    This is an example of how to output to Excel.

    Note will not output to Excel 2008

    Criteria: Spread sheet must exist on...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

Viewing 15 posts - 2,596 through 2,610 (of 3,221 total)