Forum Replies Created

Viewing 15 posts - 331 through 345 (of 1,048 total)

  • RE: How to filter the output clause from Merge

    Here is a case that would be better not using Merge. I would just have two separate statements, one the updates rows and one that inserts based on the join....

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: I can not figure this out for the life of me. Please help

    You should try to figure this out for yourself. If we do your homework for you you will not learn anything, and subsequently you will never be in competition for...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Can I send a string over TCP using T-SQL?

    In essence, what you want is for the C# application (or thread) to be waiting (sleeping) for an event that comes in the form of a message sent from SQL...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: The Year in Review - 2011

    I wish all of my fellow compatriots here on SSC much success and happiness in the coming new year.

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: All I want for Christmas

    I have been wanting a nice notebook/laptop computer to replace my old clunker Windows XP machine. It would be wonderful to get it as a gift but that won't...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Thanks

    Welcome. And Merry Christmas to you.

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Performance Tuning - Datatypes after CSV import

    you should create your import table with the correct data type for each column.

    As an alternative, you can insert the data from your stage (import) table into a second table...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: SQL Native Driver Weirdness!

    SQLChar is unicode character. CLR String is unicode, but the file you create probably isn't unicode.

    Sounds like the problem is not being aware of what is unicode...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Single tick error?

    try it this way:

    Select top 1 @AppUser = UpdatedBy FROM '+ @TableName + ''

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: create ipaddress table

    Actually have not needed to do any specific masking operations on the IP addresses as we are looking up the region (city state, country) and organization for fraud detection purposes....

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: create ipaddress table

    For some tables I store it as a bigint (convert to bigint via CLR function in insert). Very efficient and works well for huge tables or ones that might...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Prune backups to last Full and subsequent transaction backups

    I would use two folders, one for the current days worth, another archive folder for the two older days. Run a local job to move the previous days files over...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Prune backups to last Full and subsequent transaction backups

    I would use robocopy to mirror the two folders. It will delete files at the destination as they are delete at the source.

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: C# code calls sp which calls another sp

    Glad you got it working! Ho Ho Ho

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Having trouble with a join select query

    try something like this:

    select SOID, DetailID, O.ItemID, ItemType, isnull(R.ItemID,O.ItemID) as equipGroup

    from Orders O

    LEFT JOIN RelatedItems R on O.ItemID = R.RelatedItem

    The probability of survival is inversely proportional to the angle of arrival.

Viewing 15 posts - 331 through 345 (of 1,048 total)