Viewing 15 posts - 19,936 through 19,950 (of 39,903 total)
Are you connecting with SSMS? Try changing the default connections options when you connect to use TCPIP
May 7, 2010 at 12:15 pm
Lynn,
I'd present on what people ask you questions about on a regular basis, or what problems you are constantly solving. That's a good place to start. It teaches, and it...
May 6, 2010 at 3:38 pm
One more tip: document what you teach, and have people let you know if they use something. This would be important for continuing funding, or further training.
May 6, 2010 at 1:42 pm
Perhaps you want to lay out more of what you are doing. If there is an unknown number of columns, how do you apply the logic to update them and...
May 6, 2010 at 12:41 pm
GilaMonster (5/6/2010)
Grant Fritchey (5/6/2010)
May 6, 2010 at 10:52 am
I think you might want to do this instead:
DROP TABLE dbo.mytable
go
CREATE TABLE mytable( col1 int, colb varchar(20))
GO
INSERT MyTable SELECT 1, 'a'
INSERT dbo.mytable SELECT 2, 'b'
GO
DECLARE @tbl TABLE ( cola int,...
May 6, 2010 at 9:52 am
I'm with Gail, start using 2008. What I might do is install the eval/dev editions and then rewrite some of your existing stuff in 2008, using new features. Take advantage...
May 6, 2010 at 9:39 am
You ought to develop a process here to move the data regularly if this is history. A bcp out/in wouldn't take days.
May 6, 2010 at 9:35 am
Can you break up the transaction? There are times when you can "manually" handle the transaction. Break it up into chunks, and then undo it if one of the chunks...
May 6, 2010 at 9:35 am
I tend to agree with Grant. It does look like some type of corruption or issue with the Agent DLLs.
May 6, 2010 at 9:33 am
Why copy it? Is the logic that complex?
Couldn't you copy the row back into the table directly, changing the columns?
insert TableA
select ColA+1
...
May 6, 2010 at 9:32 am
My vote would be to do what you want. Do you like being a DBA? Is there something in SQL Server that interests you? I know that as you move...
May 6, 2010 at 9:28 am
GilaMonster (5/6/2010)
Henrico Bekker (5/6/2010)
Next on your agenda I would say is to go for MVP status.
Um.....
MVP status is not something that you should be 'going for' as a career goal....
May 6, 2010 at 9:26 am
I use Password Safe. It isn't multi-user per se, but you can open multiple copies and it will say that you can open read only or read-write.
I have seen...
May 6, 2010 at 9:24 am
Viewing 15 posts - 19,936 through 19,950 (of 39,903 total)