Viewing 15 posts - 10,396 through 10,410 (of 14,953 total)
I believe that will work.
If you have a test server (or desktop installation), you might try setting a simple job up that does something like insert a row into a...
March 19, 2009 at 7:30 am
I think you'll end up with locking problems if you do that. I've tried similar things on a running job, and I got error messages.
March 19, 2009 at 7:26 am
Don't double-post. Post the question in one forum on the site, please.
March 19, 2009 at 7:25 am
Are you using DTS in SQL 2005, or using SSIS?
I'm not that familiar with DTS, but I can definitely say that SSIS can import much more than 27k rows.
March 19, 2009 at 7:24 am
First thing I'd check is your settings. See if local help is disabled. Sounds like it might be.
Otherwise, I'd reinstall.
March 19, 2009 at 7:22 am
I don't believe you can use Select Into on a linked server. You have to create the table first, then use Insert Select.
March 19, 2009 at 7:21 am
It will look something like this:
declare @Body varchar(max);
select
@Body =
coalesce(
@Body + char(10)+char(13) + 'Sell clientID ' + cast(Client_ID as varchar(10)),
'Sell clientID ' + cast(Client_ID as varchar(10)))
from dbo.tblClients
where -- I...
March 19, 2009 at 7:10 am
Some people are under the mistaken impression that adding an extra log file improves performance. I've seen that come up a few times. Someone may have thought that...
March 19, 2009 at 6:46 am
Won't make the difference in a proportionate font, Jack.
If you copy-and-paste the newly formatted code from the forums into an editor, you'll find that the tabs have been replaced with...
March 18, 2009 at 2:16 pm
Here's a simple way to get all of them:
if object_id(N'tempdb..#T') is not null
drop table #T;
--
declare @Length int;
--
select @Length = 50;
--
create table #T (
ID int identity primary key,
String varchar(max));
--
insert into #T...
March 18, 2009 at 2:12 pm
You can add a transaction log to any DB. Can be done by going into database properties in Management Studio, can be done by issuing commands.
Doesn't server a lot...
March 18, 2009 at 2:01 pm
Greg Snidow (3/18/2009)
GSquared (3/18/2009)
in SQL 2005/2008 by using the inserted table in the insert proc..
Gsquared, are you saying that in 2005/2008, I can access the inserted and deleted tables directly...
March 18, 2009 at 1:20 pm
Try adding "set nocount on" to the top of each trigger (right after "as").
create trigger MyTrigger on dbo.MyTable
for insert
as
set nocount on; -- Right Here
...
March 18, 2009 at 1:12 pm
These two articles and their discussions should get you well started on that:
March 18, 2009 at 1:07 pm
Viewing 15 posts - 10,396 through 10,410 (of 14,953 total)