security

Technical Article

RE: What is BOL?

  • Reply

Books Online. The provided documentation on SQL Server. You can get an updated copy at: http://www.microsoft.com/sql/techinfo/productdoc/2000/books.asp K. Brian Kelley, GSEC http://www.truthsolutions.com/ Author: Start to Finish Guide to SQL Server Performance Monitoring http://www.netimpress.com/

You rated this post out of 5. Change rating

2003-12-10

1 reads

Technical Article

RE: SqlServer Stack Dumps

  • Reply

Go back and check the SQL Server logs from the time of the power outage and you can verify if SQL Server was shutdown gracefully. K. Brian Kelley, GSEC http://www.truthsolutions.com/ Author: Start to Finish Guide to SQL Server Performance Monitoring http://www.netimpress.com/

You rated this post out of 5. Change rating

2003-12-10

2 reads

Technical Article

RE: VB forum and advanced search?

  • Reply

I guess it is because VB is still considered an easy-to-learn language. There are countless sites with free code around, but I agree that when you need to solve a specific not every day issue you're pretty much on you're own. As it seems that SQL Server goes hand in hand VB or its dialects, […]

You rated this post out of 5. Change rating

2003-12-10

1 reads

Technical Article

RE: Alternative to NOT IN

  • Reply

Thanks for all the posts and information. It's been very informative. After more experimenting, the NOT EXISTS runs about 8 times faster on average. Seems the larger the number of rows in the 'NOT' side has a much bigger impact on the 'NOT IN' than the 'NOT EXISTS'. Now it's off to BOL, what the […]

You rated this post out of 5. Change rating

2003-12-09

Technical Article

RE: Insert Dupicates: Stored Proc vs. Trigger

  • Reply

Besides Antares686 constraint which will guarantee data quality, you could write your procedure as insert into Table_Name VALUES (@id,@value1) Where Table_ID <> @ID IF @@ROWCOUNT = 0 Return = - 1 --insert Failed ELSE Return = 0 --Success That way you are using the procedure for BOTH checks and inserts!! HTH

You rated this post out of 5. Change rating

2003-12-08

Technical Article

RE: Update Row with Combination of Values

  • Reply

Is this the kind of thing you are after? create table #temp (name varchar(50), Code varchar(50), CodeDesc varchar(50), Jan int,Feb int) set nocount on insert into #temp values ('JohnGinglehim', '45','Sick', 16, 0) insert into #temp values ('JohnGinglehim', '50','Vac', 0, 8) insert into #temp values ('HerrSchmidt', '45','Sick', 0, 8) insert into #temp values ('MasterJohns', '50','Vac', 8, […]

2003-12-05

Technical Article

RE: Inverted Dates in DTS ActiveX Step ???

  • Reply

All, Ok, we've traced the problem to the fact that the servers system date format changed when it was shutdown & restarted, i.e was 'dd/mm/yy' prior to shutdown and 'mm/dd/yy' after the restart. Everyone swears that no-one modified this setting manually, so i guess we chalk this one upto big Bill G & Microsoft undocumented […]

You rated this post out of 5. Change rating

2003-12-05

Technical Article

RE: Erro in Trans.Repl. setup.

  • Reply

I resolved this issue. Problem was, when replication creates conflict table it creates a column called 'reason_code' and I was trying to publish a table which already has this column name. I renamed the column and now everything is fine.

You rated this post out of 5. Change rating

2003-12-03

Blogs

Back to Boston for SQL Saturday

By

I’m leaving again tomorrow for a trip. This time I head back to Boston...

T-SQL Tuesday #179: What’s In Your Data Detective Toolkit?

By

Most of us who work with data have, at least a few times, been...

The Future of the Social Web Is in Good Hands

By

The Social Web Foundation is aiming to grow the fediverse and make the social...

Read the latest Blogs

Forums

7 sept, scheduled book

By philip.scott

Comments posted to this topic are about the item 7 sept, scheduled book

7 sept, schedlued article

By philip.scott

Comments posted to this topic are about the item 7 sept, schedlued article

6 sept, published book

By philip.scott

Comments posted to this topic are about the item 6 sept, published book

Visit the forum

Question of the Day

Azure Data Lake Storage Gen 2

Azure Data Lake Storage Gen 2 is built on ...?

See possible answers