Viewing 15 posts - 856 through 870 (of 1,554 total)
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...
September 21, 2005 at 8:15 am
I assume that it's a one-time operation? If you gotta do it, you gotta do it. One way or the other.
/Kenneth
September 21, 2005 at 5:23 am
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...
September 21, 2005 at 5:20 am
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...
September 21, 2005 at 4:48 am
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...
September 21, 2005 at 4:41 am
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...
September 21, 2005 at 3:10 am
Yes, that is correct. Returnvalue is int, so valid values are what an int in Transact SQL can hold.
/Kenneth
September 21, 2005 at 3:08 am
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)
September 21, 2005 at 3:00 am
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...
September 21, 2005 at 2:57 am
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...
September 21, 2005 at 1:16 am
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......
September 20, 2005 at 9:29 am
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...
September 20, 2005 at 8:15 am
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...
September 20, 2005 at 2:43 am
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...
September 19, 2005 at 6:33 am
Viewing 15 posts - 856 through 870 (of 1,554 total)