Forum Replies Created

Viewing 15 posts - 1,186 through 1,200 (of 3,221 total)

  • RE: SQL server free ebook.

    And right here on SSC

    http://www.sqlservercentral.com/Books/

    and

    http://www.sqlservercentral.com/Forums/Topic1122014-391-1.aspx

    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 server free ebook.

    Try the Redgate site,

    http://www.red-gate.com/?utm_source=google&utm_medium=cpc&utm_content=brand_aware&utm_campaign=redgate&gclid=CK2zp9SUp6kCFRG4KgodEhwWtg

    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: Truncating string Characters

    You might want to test this.

    DECLARE @String VARCHAR(200)

    SET @String = 'Microsoft Windows Server 2003 R2 Standard Edition|C:\WINDOWS|\Device\Harddisk0\Partition1'

    SELECT SUBSTRING(@String,1,PATINDEX ( '%|%' , @String) -1)

    Result:

    Microsoft Windows Server 2003 R2 Standard Edition

    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 server free versions

    For SQL Server 2005 Expess Edition

    Edition ...

    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: How To Save T-SQL Query Results To File Without Using SSIS

    a) On a recurring schedule

    Using Google "sql server scheduled job"

    You should get About 285,000 results (0.16 seconds)

    b) without Using SSIS

    Use Google "SQL Server Bulk Export"

    You should...

    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: Determining the number of business days between two date fields

    Here is group of date calculations that you might find very useful

    https://www.sqlservercentral.com/blogs/lynnpettis/archive/2009/03/25/some-common-date-routines.aspx

    A question. You must now use "Business days", does that exclude holidays? If so search...

    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: Data Warehouse Documnetation

    I like the idea of looking at each of the business aspects rather than the mechanical aspects of the data flow but I think becuase of the lack of understanding...

    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: Best way to separate "stacked" records

    The problem and details of the input are well known to yourself, but not to those who would like to assist you.

    Can you supply sample data, database table definition ......

    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: Data Warehouse Documnetation

    You appear to be concentrating on what I would term the "mechanical" aspects. What I would deem that should be included, is a word description of what the desired...

    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: convert string into smalldatetime

    river1 (6/2/2011)


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

    Sorry didn't understood? what did you meant by that?

    For example, the data you supplied was "20110531095841", apparently May...

    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: convert string into smalldatetime

    You might use something like this to achieve what you require.

    DECLARE @T VARCHAR(15)

    DECLARE @X VARCHAR(20)

    SET @T = '20110531095841'

    SET @X = (SUBSTRING(@T,1,4)+'-'+SUBSTRING(@T,5,2)+'-'+SUBSTRING(@T,7,2)+' '

    +SUBSTRING(@T,9,2)+':'+SUBSTRING(@T,11,2)+':'+SUBSTRING(@T,13,2))

    SELECT CONVERT(SMALLDATETIME,@X,101)

    Result: 2011-05-31 09:59:00

    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 need a script asap

    let you to see the records,update as well as delete the records.

    1. To "see" the records it is termed a SELECT statement. For example SELECT Column1, column2...

    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: Hello all,plz help me

    Read this article, it may be what you require.

    http://www.sqlservercentral.com/articles/ASP.NET/66511/

    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: The Ad Hoc Change

    Revenant (5/31/2011)


    Ron aka bitbucket-25253,

    According to GAAP, for each change to business data there has to be a "ledger correction document." DBA should not touch the DB without a copy...

    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: The Ad Hoc Change

    I am rather appalled that all the answers to date are so narrowly concerned with T-SQL, scripts, etc., to "correct" the so called errors.

    There appears,...

    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 - 1,186 through 1,200 (of 3,221 total)