Viewing 15 posts - 646 through 660 (of 824 total)
Yeah, Steve that was a good catch! It's one of those things that I remember knowing, but just never put two and two together.
March 4, 2005 at 12:40 pm
First you need to define a DSN using the correct port. Then you can setup the linked server to use that DSN. You can't just select "SQL Server" for the...
March 4, 2005 at 10:17 am
Thanks for reinforcing my point about cost effectiveness!
March 3, 2005 at 4:14 pm
I might add that unless your company is running *NIX servers or a mainframe (for DB2)-or is planning to-you might as well stop wasting time and just use SQL Server. ...
March 3, 2005 at 9:14 am
Just wrap it in a transaction and include the appropriate error checking.
BEGIN TRAN
ALTER DATABASE statustest SET SINGLE_USER
WITH ROLLBACK IN 20 SECONDS
IF @@ERROR <> 0 GOTO ErrBlock
do updates....
IF @@ERROR <> 0...
March 3, 2005 at 8:38 am
I thought you had placed it in Simple... Yes, if your db is in Bulk Logged recovery mode all data pages affected by a bulk operation will be included in...
March 3, 2005 at 8:31 am
If by updates you mean changing data, the CM does not and probably should not have sysadmin rights. db_Datareader and db_Datawriter are probably more than sufficient.
As for a tool to...
March 2, 2005 at 1:01 pm
What a subject! You need a book, not a post in a forum. I'll give you my thoughts on the matter (but remember what free advice is worth)
Change Management -...
March 2, 2005 at 12:49 pm
For data storage you basically have two broad choices; magnetic or optical storage. There are some new technologies using high density optical storage that are in development, but generally speaking,...
March 2, 2005 at 12:01 pm
This is actually a prett common occurrence. Check out this article:
http://support.microsoft.com/default.aspx?scid=kb;en-us;305635
March 2, 2005 at 11:53 am
IBM's on demand computing is not the same thing as a grid. On demand is when you buy a machine that, as Steve mentioned, actually has more capacity than you...
February 26, 2005 at 3:29 pm
Given the amount of time required to do the index rebuild, I'm not surprised to see a pretty large t-log backup right after. The only mystery is how it gets...
February 22, 2005 at 9:54 am
Unless you can identify each client that will consume (not necessarily directly access) SQL Server you need to go with "Per processor" licensing.
http://www.microsoft.com/sql/howtobuy/multiplexing.asp
Generally this is difficult to do...
February 17, 2005 at 4:37 pm
I'm not sure exactly what you mean. The SQL Server engine provides a certain level of ACID properties "out of the box" and you, the programmer, can specify different levels...
February 14, 2005 at 9:02 am
Use a cursor to loop through tblxxx and do the insert and update within the cursor fetch loop.
February 10, 2005 at 3:26 pm
Viewing 15 posts - 646 through 660 (of 824 total)