Forum Replies Created

Viewing 15 posts - 856 through 870 (of 1,554 total)

  • RE: Alter column

    This is not the answer to the posters question.

    Here you do create a new column with identity property, and EM will also create a new column - the question was...

  • RE: Digit by digit subtraction

    I assume that it's a one-time operation? If you gotta do it, you gotta do it. One way or the other.

    /Kenneth

  • RE: OpenRowSet from a network path

    Well, the example works just fine from a local path, so I assume that it should work just fine from a remote as well, providing you have the proper permissions...

  • RE: Help using cloumn name as parameters!!

    You shouldn't mess with this on the server. Let the developer do the filtering on the client instead, you just return all columns without any fuzz.

    Since the dev's code knows...

  • RE: Digit by digit subtraction

    I don't know how to do it more efficient - ie setbased rather than looping. I suppose you'd still have to loop through each char (digit) in the string and...

  • RE: Alter column

    AFAIK, you can't.

    Identity columns has to be created as new, they cannot be altered from old columns. (from the top of my head, though - haven't confirmed if I...

  • RE: checksum size

    Yes, that is correct. Returnvalue is int, so valid values are what an int in Transact SQL can hold.

    /Kenneth

  • RE: Text search Problem - part 2

    Can you explain a bit more?

    Table DDL and a few rows of sample data and your desired output would be nice as well. (gives us something to work with)

  • RE: Emptying Databases

    Though, if there are FK constraints declared you need to turn them off first. If there are no FK's present, you maight even be able to use truncate instead of...

  • RE: checksum size

    BOL - search for 'checksum' has the answer

    /Kenneth

  • RE: Extract data from Textfile

    Well, if you absolutely must read the file row-by-row (why do you want to do that?) then DTS will provide that for you if you also do some sort of...

  • RE: how to get Alias name in columns for views

    Heh, I didn't even bother to go into nested aliases

    select x.foobar as 'fuubar'

    from

    ( select foo as 'foobar' from bar ) x

    etc etc......

  • RE: how to get Alias name in columns for views

    Hmm I wonder... Only thing I can think of is to search the viewdefinition for '%myAlias%' string patterns, then you're on your own.

    I think it can be pretty challenging to programmatically...

  • RE: ISNUMERIC and CONVERT

    My 'clients' in this case is other systems inhouse. If we make an arrangement of sending/receiving data to/from eachother, it's cruicial to lay out specs about what format the data...

  • RE: ISNUMERIC and CONVERT

    Well, in general the SISO(tm) algortithm is all too true in our line of business, so I try my hardest to apply the necessary amount of force on the delivering...

Viewing 15 posts - 856 through 870 (of 1,554 total)