Forum Replies Created

Viewing 15 posts - 6,946 through 6,960 (of 7,164 total)

  • RE: Signature Pad data

    It will depend on the output of the sig pad so the answer will be specific to the hardware and software provided by the vendor...I suggest you work with them.

    One...

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

  • RE: Migrating from Sybase to Sql Server 2005, not nulls & PK's not being brought over

    Mapping a Data Reader Source to an OLE DB Destination will give you the option to create the table in the destination...however other than column names and data types nothing...

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

  • RE: SQL express 2005 tcp/Ip service cannot started

    Did you look at the Event Log? Please post the details of your findings so we may help you arrive at a solution.

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

  • RE: LOB data types in SQL Server ...

    It looks like it has been fixed.

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

  • RE: database mail trigger on insert

    Lionel E. Nzenze (3/11/2011)


    Bad Idea..

    So not send mail from a trigger.

    Get the Trigger to write Whatever you want into some table.

    Create a SQL Server Job to poll the said table...

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

  • RE: Varchar to datetime

    Try this:

    SELECT ...,

    REPLACE(CONVERT(CHAR(10), CONVERT(DATETIME, [column_name]), 101), '/', '-') + ' ' + CONVERT(CHAR(12), CONVERT(DATETIME, [column_name]), 114) AS my_new_date,

    ...

    FROM [some_table];

    Edit: missed the replace, thanks bitbucket

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

  • RE: Find the Account under which SQL Server runs

    You can do this with sc.exe:

    C:\>sc qc SERVICE_NAME

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

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

  • RE: Alter table script in SQL server 2005 Express

    nico van niekerk (7/15/2008)


    It IS important in which order columns are specified in a table. Having varchar columns preceding fixed-length columns place an undue burden on the server because of...

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

  • RE: User prompt for data

    It can be done using a couple Windows Batch commands to accept the user's input into StdIn and by calling sqlcmd.exe to execute the SQL. I woudl recommend putting your...

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

  • RE: Data type design approach

    Redesign your data model 🙂

    Just kidding (not really)...boolean in SQL Server is implemented as the BIT data type where 0 = false. As an aside, NULLable bits are allowed too...

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

  • RE: How to write a message to the SQL Server 2008 R1 error log from TSQL

    Anything with a Severity <= 10 will be treated as "informational" and will not affect batch execution (i.e. will not set @@error). It will however cause data to be sent...

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

  • RE: Inserting new and updating missing rows

    greg.bull (3/10/2011)


    By the way, I can't us MERGE, need a SQL2005 solution.

    Why did you post this in the SQL2008 forum? Try posting this in the SQL2005 forum.

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

  • RE: Winzip Drama in T-SQL Task

    WayneS might be on to something. Is your copy registered?

    I just setup wzzip to test locally and here is what I get the first time I try running it:

    C:\Program Files\WinZip>WZZIP.EXE...

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

  • RE: Repeating row headers SSRS reports

    Not that you won't get help here, but you may be better off posting this in an SSRS Forum: http://www.sqlservercentral.com/Forums/Group416.aspx

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

  • RE: Best Protection Level to use when deploying to server

    Ideally you should have the package use Windows Authentication to reach both SQL Servers and set the ProtectionLevel to DontSaveSensitive.

    If that is not an option and you must use a...

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

Viewing 15 posts - 6,946 through 6,960 (of 7,164 total)