Viewing 15 posts - 57,616 through 57,630 (of 59,048 total)
Can you post some sample data, hopefully in the form of INSERT statements, along with the CREATE statement for the table you're trying to get the data from, please?
September 15, 2006 at 6:28 am
I wouldn't say "never"... they're pretty handy when making a temp table and, since no one but the current session can use the temp table, there's no concurrency issue to...
September 15, 2006 at 6:21 am
Heh, heh.... mine are getting worse... old brain.
You hit the nail on the head about the scope thing... I was curious as to why you declared the variable external to...
September 15, 2006 at 6:18 am
Off the beaten path a bit, Serqiy, but what happened to your number of posts? You were way up there and now you have less than 1000? What'd they do? Reset...
September 14, 2006 at 10:14 pm
As usual, Remi did it absolutely correct in the first reply above...
September 14, 2006 at 10:02 pm
Ohhh no, no, no... we ran into that little jem... "death by SQL"... pegged 4 cpus for two hours to do a lousy 2 minute update... THAT was repeatable with...
September 14, 2006 at 9:58 pm
Dollars to donuts says that someone change the privs on a folder or deleted a user with the privs... did you do a search for the DLL to find out...
September 14, 2006 at 9:49 pm
If you have a clustered index, change it to a non-clustered index. That'll help a highly transactional table a bit, as well, especially if you have a lot of inserts...
September 14, 2006 at 9:46 pm
I found an alternative in XP... right click on the desktop, select [Properties], select the [Appearance] tab, and change the [Font Size] setting to LARGE or EXTRA LARGE.
September 14, 2006 at 9:40 pm
I'm afraid that's it... if you want to change the font "size" in EM, I believe you are going to have to change the screen resolution (right click on the...
September 14, 2006 at 9:37 pm
Despite the fact that it recompiles every time it is used, I've found nothing faster than the following especially since page size and page number can be parameterized in a...
September 14, 2006 at 9:26 pm
SwTrans,
I guess I don't see what your problem is or what you're actually trying to do... why wouldn't the following work for you?
DECLARE @UseIt1 as varchar(100)
DECLARE @WorkQueue AS VARCHAR(100)
SET @WorkQueue...
September 14, 2006 at 9:14 pm
Sushila,
You're having one of those days like I did on the trigger thing... ![]()
DECLARE @UseIt1 as varchar(100)
EXEC ('SET ' + @UseIt1 +...
September 14, 2006 at 9:03 pm
Whew! The number 6 would have really messed me up... I only have 5 fingers on each hand! ![]()
September 14, 2006 at 8:54 pm
Yep... and keep in mind that SELECT/INTO only works once on any given target table unless you drop the table... but that would defeat the archive, eh
September 14, 2006 at 8:51 pm
Viewing 15 posts - 57,616 through 57,630 (of 59,048 total)