Forum Replies Created

Viewing 15 posts - 3,031 through 3,045 (of 3,221 total)

  • RE: DateTime to Date only....

    Take your choice of formats:

    SELECT [OrderID]

    ,CONVERT(VARCHAR(10),[OrderDate], 101) AS 'OrderDate'

    ,CONVERT(VARCHAR(10),[shippedDate],121) AS 'ShippedDate'

    ,CONVERT(VARCHAR(11),[RequiredDate], 106)...

  • RE: obtain data from 2 weekdays?

    This might do what you are asking: It uses the current date to determine the prior Monday. When tested today (Saturday July 5th the results were:

    Monday ...

  • RE: Raima Database Data Import

    Visit their web site for a free SDK (apparently uses C or C++) and you might be able to generate a CSV per Jeff's suggestion and then import from that....

  • RE: what would be the maximum seed value for a bigint column in a table in SQL Server 2000

    From BOL

    bigint

    Integer (whole number) data from -2^63 (-9,223,372,036,854,775,808) through 2^63-1 (9,223,372,036,854,775,807). Storage size is 8 bytes.

  • RE: SQL injection cleanup?

    To assist you in expanding BigJohn's procedure the following will give you the name of each table, the columns which are character type, perhaps you can merge these 2 to...

  • RE: How to reset the IDENTITY values?

    Use the TRUNCATE TABLE command

  • RE: Problem with Tree in Sql 2005

    Extracted from your post

    CreateTree sql, "xRoot"

    Calls this subroutine

    Public Sub CreateTree(sql As String, parentKey As String)

    Dim rst As ADODB.Recordset

    Dim nd As MSComctlLib.Node

    ...

  • RE: IDENTITY

    If the result:

    cname Cid

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

    sunil2 ...

  • RE: IDENTITY

    dost.kumar your original question was:

    i want change the CId IDENTITY (1,3)..

    how can i alter the table..

    which is what resulted following my suggestion.

    Do you want your existing entries to...

  • RE: injection attack

    When reading this. Scroll up to the top of this page in the upper frame you will see Search: type in the word "injection" (without the quotes) and...

  • RE: Poor Performance temporarily fixed by rebuilding indexes.

    Another possibility for you to check

    Microsoft® SQL Server™ 2005 collects statistical information about indexes and column data stored in the database. These statistics are used by the SQL Server...

  • RE: Urgent: Access restriction in SP for web site....

    This may seem to be a little brash on my part or my natual denseness, and hope you will pardon me for asking but have you really examined the use...

  • RE: Career Advice...what is next after SR SQL DBA ?

    Be carefully about advancing too far up the ladder. I know of companies (names with held for obvious reasons) that have promoted DBA's to titles like 'System Architect' in...

  • RE: Table Modification

    This SP will find the desired text as shown in the procedure and can be used in SQL 2000 and 2005 - note it will find the watchword even if...

  • RE: Converting SQL 2000 Database to SQL 2005

    In addition to:

    I would recommend running the SQL Server 2005 upgrade advisor on your DB first so that you can look at depricated functionality and possible issues that you...

Viewing 15 posts - 3,031 through 3,045 (of 3,221 total)