Viewing 15 posts - 676 through 690 (of 1,162 total)
Actually, this is definitely a UI bug. It looks like it's selected when you create a new one, but it's not behind the scenes.
Just dropping down the enumerator type...
September 9, 2011 at 8:53 am
I've definitely seen it before, but have always been able to fix between some combination of switching the enumerator type to something other than File, then back again, or dragging...
September 9, 2011 at 8:46 am
Read above. You can't even select from the renamed table. It's incredibly difficult to get the data somewhere else in any way
September 9, 2011 at 7:55 am
Welsh Corgi (9/9/2011)
HowardW (9/9/2011)
September 9, 2011 at 7:35 am
There would be a good argument for implementing this as a computed column (possibly persisted or indexed depending on it's use) if it will always be calculable based on other...
September 9, 2011 at 5:07 am
Ouch. This is looking tricky. You can't even refer to the object name in a select statement (even fully referenced). I've tried adding a synonym to it, which lets you...
September 9, 2011 at 4:30 am
Tried it out, also can't find a work-around (can't rename in the UI either). The only option I can find is to script the table, recreate it as the correct...
September 9, 2011 at 3:58 am
The OP did say it was by mistake. Does it work if you prefix it with dbo.tablename? E.g.:
sp_RENAME 'dbo.sp_columns','claims'
The problem is likely to do with the fact that sp_...
September 9, 2011 at 3:36 am
Yes, you could setup a SQL Profiler trace, or just have a look with sp_who2 (or the excellent 3rd party sp_whoisactive) while the blocking is occurring, however, if you can...
September 9, 2011 at 2:11 am
Agreed, depends on the isolation level. Even in Oracle, no-one could run an update on a row that had been affected by another user transaction if it hadn't been committed,...
September 5, 2011 at 1:30 am
Actually, I was referring to the Server Configuration values rather than the client connection settings in SSMS. E.g. the ones held here:
sp_configure...
September 2, 2011 at 8:32 am
Not sure I'm understanding you.
So, are you saying you've put the location the package needs to look for the database config in the database and asking how you can...
September 2, 2011 at 7:42 am
OK, if I'm understanding you correctly, you're effectively using a custom configuration rather than using SSIS's configuration settings.
That's fine, but at the end of the day, something has to...
September 2, 2011 at 7:21 am
You can set implicit transactions on by default as part of the user options server configurations parameter. The easiest way to modify this is through SSMS (right click on the...
September 2, 2011 at 6:28 am
Have a look here:
http://msdn.microsoft.com/en-us/library/cc895212.aspx
You can store config parameters in a database.
If you want help with anything specific, I'd ask a specific question, taking some care to explain it.
September 2, 2011 at 6:03 am
Viewing 15 posts - 676 through 690 (of 1,162 total)