Forum Replies Created

Viewing 15 posts - 2,986 through 3,000 (of 3,221 total)

  • RE: plz help me connet two table in two database

    Start by reading Books On Line (BOL)

    URL for linked servers is:

    ms-help://MS.SQLCC.v9/MS.SQLSVR.v9.en/udb9/html/6ef578bf-8da7-46e0-88b5-e310fc908bb0.htm

    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: Administering an Application Role

    The application role and control of same has changed from 2000 in 2005.

    Sample code from BOL

    DECLARE @cookie varbinary(8000);

    EXEC sp_setapprole 'Sales11', 'fdsd896#gfdbfdkjgh700mM'

    , @fCreateCookie = true, @cookie =...

    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: delete the columns

    Try this:

    SELECT Name, MAX(Subsqno),SerialNo FROM TbL01 GROUP BY NAME,SerialNo HAVING COUNT(Name) = 1

    UNION

    SELECT Name, MAX(Subsqno), SerialNo FROM TbL01 GROUP BY NAME,SerialNo HAVING COUNT(Name) >...

    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 2005 stops every night

    SultanKahut

    I have experienced the same error message, starting a week ago, it occurs around 9:30 PM. Shut the machine down and was notified that an automatic update was...

    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: Count Business Days

    Created the function using copy / paste / execute - no reported error then tested using the following:

    DECLARE @Bdays AS INT

    SET @Bdays = dbo.fn_GetBusinessDays('07/06/2008','07/27/2008')

    SELECT @Bdays

    Result returned 14 ..

    Now counting...

    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 Error Msg 4863,Bulk load data conversion error (truncation)

    Using OpenRowset as:

    INSERT INTO myTestOrder

    SELECT Col1, Col2, Col3, SUBSTRING(Col4,1,3)

    FROM OPENROWSET(BULK 'C:\myTestOrder-c.txt',

    FORMATFILE='C:\myTestOrder.fmt'

    ...

    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: Resource Governor

    Steve thanks for a good question. It introduced myself and I imagine many others to a new or little know facet of SQL Server 2008 and in that way...

    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: Soft Skills

    I too have been asked (directed) to improve my softskills, since I have the unskilled propensity to tell the truth. The request of me to improve frequently occurs right...

    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: delete the columns

    i mean the latest ones should be there in the destination columns

    What defines the latest ones?

    Is it the column SUB-SEQNO value

    or

    Serial No values

    or

    some combination...

    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: MSDE 2000 upgrade to SQL enterprise edition .

    May I ask you a question. Why upgrading to SQL 2000, particulary the most expensive version? This will still leave you 8 years behind the existing technology. ...

    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: Deleting data in tables

    You do not say if amongst these 100 user tables when created or later altered have been defined with

    [ FOREIGN KEY ]

    ...

    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: full-text search for a particular table.

    ANJAN.ASHOK try reading this from BOL:

    Getting Started with Full-Text Search

    ms-help://MS.SQLCC.v9/MS.SQLSVR.v9.en/fulltxt9/html/1fa628ba-0ee4-4d8f-b086-c4e52962ca4a.htm

    It gives an example using the AdventureWorks database. It is reasonably detailed enough so to get you going.

    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: 'Date' Conversion error from source file to destination table

    Aveerabadra

    I am not that familiar with SSIS but I see you are using

    (DT_DBTIMESTAMP)(SUBSTRING(DT,7,2) + "-" + SUBSTRING(DT,5,2) + "-" + SUBSTRING(DT,1,4))

    have you tried using DT_DBDATE instead of DT_DBTIMESTAMP...

    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: 'Date' Conversion error from source file to destination table

    Aveerabadran are you sure that the column data type is timestamp. and not a datetime data type.

    From BOL

    Is a data type that exposes automatically generated, unique binary numbers within...

    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: many stored procedures vs 1

    You should take into consideration the danger of using dynamic SQL statements, in that they provide a path through database security for injection attacks, and unauthorized data access.

    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,986 through 3,000 (of 3,221 total)