Forum Replies Created

Viewing 15 posts - 166 through 180 (of 920 total)

  • RE: database design, your thoughts on an issue with developers

    You might also ask him exactly what performance gains he expects to see with multiple databases.


    And then again, I might be wrong ...
    David Webb

  • RE: Convert MAC address from hex to 16 integar value

    Your milage may vary, but this is one way to go from the integer value to the hex with colons. This was taken from a forum post by Paul...


    And then again, I might be wrong ...
    David Webb

  • RE: Convert MAC address from hex to 16 integar value

    Sorry, but I'm very dense today apparently. What are the rules for converting one to the other?


    And then again, I might be wrong ...
    David Webb

  • RE: Problem querying column containing an asterisk

    As Lowell suggested, posting the table definitions and some sample data in the form of insert statements would help. Can you replicate this behavior in other tables or...


    And then again, I might be wrong ...
    David Webb

  • RE: Backup to desktop

    The command you showed:

    BACKUP DATABASE [DEVDB] TO DISK = N'C:\BACKUP\DEVDB_20121220_120038.bak' WITH NOFORMAT, NOINIT, NAME = N'UploadDownloadDev-Full Database Backup', SKIP, NOREWIND, NOUNLOAD, STATS = 10

    GO

    would put the backup on the SQL...


    And then again, I might be wrong ...
    David Webb

  • RE: Problem querying column containing an asterisk

    How are you executing the query? Wouldn't be directly into Excel by any chance, would it?


    And then again, I might be wrong ...
    David Webb

  • RE: Unwanted parameter truncation

    You could send a fixed terminating character on the end of your variable parameters and check to see if it is actually the last character in the parameter. If...


    And then again, I might be wrong ...
    David Webb

  • RE: pattern matching?

    Do you have anything else in the row that might help to find duplicates? Address? Phone? DUNS number? federal tax id?

    What makes a business unique?...


    And then again, I might be wrong ...
    David Webb

  • RE: Anyone having trouble browsing the site on a Surface with Windows RT?

    Also having issues with a newly upgraded Win 8 laptop. The 'active threads' link just goes away and never comes back in the new IE but still works well...


    And then again, I might be wrong ...
    David Webb

  • RE: Confused about count function

    It's looking for duplicates. It will only show rows where there is more than 1 instance of the combination of columns in the 'group by'.


    And then again, I might be wrong ...
    David Webb

  • RE: Math operation debugging

    Just made everything at least 3 decimals. I think some of the integer math was dropping the decimals for you.

    select ((26.700*((504.682+14.566)/14.730)*(520.000/(460.000+64.000))*(1.00/POWER((1.00/(0.99877-(0.00000072531*504.682*64.000)+(0.00013027*504.682))),2.000)))+(19.500*((1751.84+14.566)/14.73)*(520.000/(460.000+67.000))*(1.000/POWER((1.000/(0.99877-(0.00000072531*1751.84*67.000)+(0.00013027*1751.84))),2.000))))

    gives me: 4020.733146


    And then again, I might be wrong ...
    David Webb

  • RE: VC90 Error during 2012 SQL Server Express Management Studio install.

    You might check this link (near the bottom). Hard to say if that's your real problem:

    http://social.msdn.microsoft.com/Forums/en-US/vssetup/thread/77a8c381-60d3-46db-a9dd-e666b4a84a3d/


    And then again, I might be wrong ...
    David Webb

  • RE: SQL Backups vs System Backups

    Some backup software is SQL Server aware and will actually use the native functionality under the covers. I don't know enough about the System Center product set to know....


    And then again, I might be wrong ...
    David Webb

  • RE: SQL Backups vs System Backups

    You need both. A normal system backup, if it can copy the .mdf and .ldf database components at all, will not result in a database that is restorable. ...


    And then again, I might be wrong ...
    David Webb

  • RE: The multi-part identifier "Master.Buyer_Initial" could not be bound

    Assuming that Master is a table in you DB:

    USE [TrackIT]

    GO

    INSERT INTO [dbo].[tblTransactions]

    (tblTransactions.Buyer_Initial,

    tblTransactions.HeatTicketNumber,

    tblTransactions.PO_Number,

    tblTransactions.Transaction_Date,

    tblTransactions.EndUserFirstName,

    tblTransactions.EndUserLastName,

    tblTransactions.EmployeeStatus,

    tblTransactions.CostCenter,

    tblTransactions.TermDate,

    tblTransactions.License_Available,

    tblTransactions.TransferFrom,

    tblTransactions.TransferTo,

    tblTransactions.EndUserLocation,

    tblTransactions.EquipType,

    tblTransactions.Quantity,

    tblTransactions.Software_Description,

    tblTransactions.Notes,

    tblTransactions.Unit_Price,

    tblTransactions.AllocationDate,

    tblTransactions.Last_Renewal_Date,

    tblTransactions.NextRenewalDate,

    tblTransactions.LastRenewalPO,

    tblTransactions.Transaction_Number)

    Select

    Master.Buyer_Initial,

    Master.HeatTicketNumber,

    Master.PO_Number,

    Master.Transaction_Date,

    Master.EndUserFirstName,

    Master.EndUserLastName,

    Master.EmployeeStatus,

    Master.CostCenter,

    Master.TermDate,

    Master.License_Available,

    Master.TransferFrom,

    Master.TransferTo,

    Master.EndUserLocation,

    Master.EquipType,

    Master.Quantity,

    Master.Software_Description,

    Master.Notes,

    Master.Unit_Price,

    Master.AllocationDate,

    Master.Last_Renewal_Date,

    Master.NextRenewalDate,

    Master.LastRenewalPO,

    Master.Transaction_Number

    from [Master]

    GO


    And then again, I might be wrong ...
    David Webb

Viewing 15 posts - 166 through 180 (of 920 total)