Indexing

Technical Article

Reindex Procedure with a Twist (or two)

  • Script

We’ve all seen reindex procedures that rebuild all indexes in a database or all indexes in a database which have less than a specified ScanDensity. This one goes a few steps further. First, the DBA can specify a ScanDensity_Threshold (a min value for ScanDensity), plus a Limit (qty or %). If you specify a ScanDensity_Threshold […]

5 (1)

You rated this post out of 5. Change rating

2005-06-14 (first published: )

1,827 reads

Technical Article

XML Bulk Load - getting the XSD

  • Topic

Hi all, I am trying to get this damned SQL XML Bulk Load to work and I have found that I can pass the ADO command to load it into the database.The 2 parameters I need are:1.) The XSD2.) The XML file to importThe problem I have is that the XSD file I have is […]

You rated this post out of 5. Change rating

2005-03-29

Technical Article

RE: Default Transaction Isolation Level

  • Reply

There are 4 types of transaction isolation levels. Here is the syntax :SET TRANSACTION ISOLATION LEVEL     { READ COMMITTED         | READ UNCOMMITTED         | REPEATABLE READ         | SERIALIZABLE     }Once you set the Isolation level, it will work for that particular connection.--Kishore 

You rated this post out of 5. Change rating

2005-03-29

Technical Article

RE: SQL Performance Q''''s

  • Reply

The 100% cpu is definately related to SQL?When you are hitting these cpu levels run a quick query to see what's going on, get an idea of what processes within SQL could be causing the problem.Quick example, I use this, which shows me what process is using the most CPU at the time (can be […]

You rated this post out of 5. Change rating

2005-03-23

Technical Article

RE: urgent sql assignment

  • Reply

Im a newbie in sql. i started learning SQL at the begining of february...the assignment is a class assignment... Do you know any free online sql server? Any site with BOL will help me...have a great week...

You rated this post out of 5. Change rating

2005-03-22

Technical Article

RE: Parse

  • Reply

Create Table Contacts( name varchar(200))  go  insert into Contacts(Name) Values('John E. Doe')  insert into Contacts(Name) Values('Jan Smith')  insert into Contacts(Name) Values('Ralph Wallace')  insert into Contacts(Name) Values('Walter C Johnson') goselect    Left(Name, Len(Name) - Charindex(' ',Reverse(Name),1)-1) As FName  , Right(Name,Charindex(' ',Reverse(Name),1)-1) As LName from Contacts

2005-03-16

Technical Article

RE: Question of the Day for 11 Mar 2005

  • Reply

Ok, so if DIVIDEBY is algebra, could someone explain the answer please, for those of us who are not mathematicians.I'm not sure why we should have maths questions in what is an SQL forum.  This question was clearly badly worded, judging by the percentage of people who got it wrong.  If the question had been "T_SQL equivalent […]

You rated this post out of 5. Change rating

2005-03-11

Blogs

SQL Saturday Boston 2024 Slides

By

Thanks to everyone that came to my talks. Slides are below. Best Practices for...

Small Data SF 2024

By

I can’t remember how I heard about Small Data SF 2024, but it caught...

A New Word: Moledro

By

moledro – n. a feeling of resonant connection with an author or artist you’ll...

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