Viewing 15 posts - 16 through 30 (of 100 total)
Gail,
Thanks. I don't know what the heck I was thinking there. My bad. :blush:
Rich
December 16, 2010 at 11:14 am
Two things come to mind. First, you don't mention if you are doing the log backup with truncation. If not, then all transactions will remain, as the default is without...
December 16, 2010 at 6:27 am
That is correct. Each Unicode character takes 2 bytes of storage (2 8-bit words) and each non-Unicode character takes 1 byte (1 8-bit word) of storage.
October 20, 2010 at 6:39 am
rtelgenhoff (10/1/2010)
October 1, 2010 at 12:06 pm
I found the question a little misleading due to the fact that you are assigning the trancount to a variable prior to the insert. If you inserted @@trancount DIRECTLY into...
October 1, 2010 at 9:06 am
Hugo Kornelis (9/24/2010)
tommyh (9/23/2010)
1. Its not part of MS recommendations (atleast not...
September 24, 2010 at 7:03 am
Create a temp table and do a bulk insert from the txt file. Then do as the above suggested, joining the tables together.
Create table #emailaddys (address varchar(100))
bulk insert #emailaddys from...
August 19, 2010 at 6:39 am
Thanks for posting the resolution. Very few OP's do that, and it's also a learning experience for other folks when you know how it got fixed.
August 13, 2010 at 1:56 pm
@OP - Are you connected to multiple services in Object Explorer? Maybe SQL Server, Analysis Services, and Integration Services? If so, then it COULD be that you have SSAS highlighted...
August 12, 2010 at 9:34 am
Agreed. But, I have spent a fair amount of time with it, just sometimes forget that there are some "quirks" that can get in the way of doing something which...
August 11, 2010 at 11:17 am
:ermm: Phil, my apologies.
Should have tried it a little more before I ASSUMED that SSIS would be logical. Guess it's not as straight forward as I thought.
Rich
August 11, 2010 at 10:23 am
Sure you can. Configure the DataSource for where the data is coming from, and then configure the destination, setting the DataAccessMode to be TableNameOrViewNameVariable. Create the variable at the package...
August 11, 2010 at 9:35 am
Phil Parkin (8/11/2010)
If you want to put data in them too, you might find this a challenge.
Ummm... No.
Use an ExecuteSQL task to create the table, then a DataFlowTask with a...
August 11, 2010 at 9:13 am
Yes, you can use an Execute SQL task, and that is probably the best way to accomplish it.
August 11, 2010 at 6:55 am
Paul White NZ (7/20/2010)Seeing as I am now in picky mode (you started it) I'm going to say that a filtered clustered index is possible (in a sense) just create...
July 20, 2010 at 11:09 am
Viewing 15 posts - 16 through 30 (of 100 total)