Forum Replies Created

Viewing 15 posts - 2,461 through 2,475 (of 3,221 total)

  • RE: Problem converting VARCHAR to NUMERIC or DECIMAL

    Setting up your data and testing I do not find a problem... Can you

    explain in more detail? I am assuming (and that may be my mistake),

    that SAP...

    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: SQL 2008 T-SQL

    Jamie Longstreet (8/21/2009)

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

    Excellent question.

    First because it demonstrates the MERGE,

    Second because it illustrates the $action,

    Nice one!

    dave.farmer

    Actually, I was going to say much the same but got a bit...

    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: SQL 2008 T-SQL

    Composed before I read Steve Jones post ....

    Sorry about that Steve I should have hit the refresh before hitting post.

    Scott Coleman

    How on earth can you...

    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: Cleaning up a Database

    MothInTheMachine

    Just in case you run into some unexpected glitches these links might assist you in over coming those glitches:

    http://technet.microsoft.com/en-us/library/cc178973.aspx

    From above:

    With Microsoft Office Access 2007, you can open and use...

    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: CheckDB

    Sankar Reddy

    Note that DBCC CHECKDB is re-written by Paul Randal in SQL Server 2005 but you are referring to a BOL link for SQL Server 2000.

    Sankar - take my...

    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: CheckDB

    Sankar Reddy

    5) It has a flag not to run against nonclustered indexes.

    FROM BOL: http://msdn.microsoft.com/en-us/library/ms176064.aspx

    -- Check the AdventureWorks database without nonclustered indexes.

    DBCC CHECKDB (AdventureWorks, NOINDEX);

    GO

    So, it is true.

    Repeating myself:

    From Books 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]

  • RE: CheckDB

    I firmly believe the author of this question did NOT perform due diligence when selecting possible answers.

    The original statement

    Check all that apply that are true about

    In...

    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: Quick Questions: SET OPTIONS....where are they stored

    Prehaps this information From Books On Line, will help you:

    SET ARITHABORT OFF (also effect of ANSI_WARNINGS setting)

    ms-help://MS.SQLCC.v9/MS.SQLSVR.v9.en/udb9/html/828b357b-2f36-49fe-9f31-8794512c02a3.htm

    When a SET statement is executed in a stored procedure, the new...

    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: Export Query result to Excel Sheet

    If you are NOT using Excel 2007 read the following ariticle which also has sample code.

    http://www.simple-talk.com/sql/t-sql-programming/sql-server-excel-workbench/

    10:09 - spelling correction

    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: SQLServerCentral Editorial Policy - Article Publication

    Steve as a discaimer (bold test added by poster)

    "Please note that articles are the opinion of the author and are not endorsed by SQL Server Central. Readers should do...

    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: Bulk Insert does not read entire csv file.....

    Eric Weinstein

    dbo.GET_INI

    Take it that this is a procedure developed by persons at your location, if not violating any company rule would you care the share that code?

    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: renaming excel sheets

    Read this article

    http://www.simple-talk.com/sql/t-sql-programming/sql-server-excel-workbench/

    Scroll down the page unitl you reach *OLE Automation it will show you what I think you need to do.

    By the way the article will allow you to...

    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: SSMS Oddity (ies)

    Tried this using SSMS - SQL Server 2008

    When clicking execute - a message is displayed sating that

    The query cannot be represented in the Diagram and Criteria Pane.

    .

    However you can...

    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: Trim tables with dynamic Sql

    Amir

    I need to write a procedure that trimming tables that are created in the database

    If you mean to reduce the size of the table in the database changing from CHAR...

    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: user identification

    Use USER_NAME() or CURRENT_USER function

    See BOL ms-help://MS.SQLCC.v9/MS.SQLSVR.v9.en/tsqlref9/html/29248949-325b-4063-9f55-5a445fb35c6e.htm

    You can capitialize the first character of any word using something like:

    SELECT UPPER(SUBSTRING(LastName,1,1)) + SUBSTRING(LastName,2,LEN(LastName))

    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,461 through 2,475 (of 3,221 total)