Forum Replies Created

Viewing 15 posts - 6,601 through 6,615 (of 7,164 total)

  • RE: Convert Military date to standard

    What about something along these lines?

    SET DATEFORMAT MDY ;

    DECLARE @date DATETIME ;

    SET @date = '2011-03-01 13:10:29.817' ;

    SELECT CONVERT(VARCHAR(30), @date, 101) +

    RIGHT(CONVERT(VARCHAR(30), @date, 0), 7)...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Moving a table to a new file group

    Nic-306421 (4/20/2011)


    Hi Jason,

    Spot on, it does contain a BLOB column, I'll read through the link and code you provided and then implement that.

    Indeed, nice catch!

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: SQL Native Client x32 or x64?

    Syed Jahanzaib Bin hassan (4/20/2011)


    MetaData should be MS SQL Server 2005 or Later because SQL Server 2000 is not a schema base database

    and use this new JDBC driver 2.0 by...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: SQL Native Client x32 or x64?

    I am not sure how you can figure out whether your process is 32 or 64 bit.

    I'm thinking it could be as simple as launching Task Manager and examining the...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: SQL Native Client x32 or x64?

    jallmond (4/20/2011)


    In this MSFT article, it clearly states that the x64 client also installs the 32-bit binaries.

    http://msdn.microsoft.com/en-us/library/ms131321.aspx

    That's the same article I linked to above.

    So my present understanding is that the...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: SQL Native Client x32 or x64?

    Nothing personal...I do have qualifications, I just don't display them on my shirt sleeve (or in my forum signature). What's in a qualification anyway?

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: SQL Native Client x32 or x64?

    Syed Jahanzaib Bin hassan (4/20/2011)


    There is no 32bit Native client install on the 64bit OS and 64bit SQL Server installation,There is only 1 Native client available in the DSN window......

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: SQL Native Client x32 or x64?

    From MSDN http://msdn.microsoft.com/en-us/library/ms131321.aspx

    The x64 and Itanium versions of sqlncli.msi also install the 32-bit version of SQL Server Native Client.

    You can run processes in 32-bit mode on a 64-bit server. In...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: I want to check the permissions given to a user not login on particular schema

    Here's how I usually do it:

    SELECT SYSTEM_USER -- should show me

    EXECUTE AS LOGIN='login_to_test' -- allows me to impersonate the test login's security context

    SELECT SYSTEM_USER -- should show login_to_test

    -- test the...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: SQL Native Client x32 or x64?

    Syed Jahanzaib Bin hassan (4/20/2011)


    Is your OS 32-Bit,Installation of SQL Server 2008 is same for both bits,it will automatically check the OS then install the required version,Its depend on the...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Are the posted questions getting worse?

    Stefan Krzywicki (4/20/2011)


    I went to the latest SQL Server Saturday in Boston and had a great time. I'm mentioning it now because I've been using a little trick I learned...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: SQL Native Client x32 or x64?

    It depends on whether the process is running in 32-bit or 64-bit mode. This is also true of DSNs. If you are referencing a DSN in your connection string when...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Unable to Create Trigger on CDC Tables

    I am taking CDC to mean Change Data Capture.

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Export to flat file without extended stored procedure

    Please don't cross post, it just fragments the conversation:

    http://www.sqlservercentral.com/Forums/Topic1095501-392-1.aspx

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Are the posted questions getting worse?

    LutzM (4/19/2011)


    Brandie Tarvin (4/19/2011)


    I'm going to violate the rule and add a "technical" question to The Thread under the caveat that I don't really need an answer for a problem...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

Viewing 15 posts - 6,601 through 6,615 (of 7,164 total)