database mail

Technical Article

RE: SELECT TOP X by using dynamic SQL

  • Reply

I've heard the next release of SQL Server will support dynamic TOP(n) like you've written, but until then, some dynamic SQL should do the job:DECLARE @top varchar(10) DECLARE @sql varchar(100)SET @TOP = 2 SET @sql = 'SELECT TOP ' + @top + ' Field FROM MyTable'PRINT @sql EXEC(@sql) 

2005-02-14

Technical Article

Access 2002 Project Timeout to SQL Server

  • Topic

I just got notified in a conference call meeting this morning that users at two remove sites are experiencing timeouts using my application.  I'm an outside consultant.  The client company uses Citrix over a VPN for these remote users.  The Access Project is a run-time version and is coded entirely with stored procedures and unbound forms.  It sits […]

You rated this post out of 5. Change rating

2005-01-07

Technical Article

RE: Insert Performance

  • Reply

If you are attempting to insert data into a table with a clustered index you have to bear in mind that the data has to be moved about a lot to maintain the integrity of the index. I would recommend dropping the clustered index before the insert and then creating it again afterwards, you should […]

You rated this post out of 5. Change rating

2004-04-06

Technical Article

RE: Case statement imbedded under another case statement

  • Reply

  sum( case dbo.D_VEHICLE_STATUS.LIFECYCLE_STATUS_CODE when '0'      then   dbo.F_VEHICLE_STATUS.VEHICLE_STATUS_UNITS  else sum(          ( case when dbo.D_PORT.PHYSICAL_PORT_CODE = 'PMA' then             dbo.F_VEHICLE_STATUS.VEHICLE_STATUS_UNITS   else 0 end  )    end ) every case must have a end.  

You rated this post out of 5. Change rating

2004-03-19

Technical Article

RE: DBA/Developer Growth

  • Reply

Back to the main topic, I'd say as much reading and interaction as you can manage. We all tend to be limited by our environment, nice to talk to people who do different things. Andy http://qa.sqlservercentral.com/columnists/awarren/

You rated this post out of 5. Change rating

2003-11-26

1 reads

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