Viewing 15 posts - 151 through 165 (of 358 total)
You should be able to use the ranking functions to get what you are looking for. Here is a sample.
Declare @t Table(i int)
Insert Into @t
Select 1
Union All
Select 1
Union All
Select...
December 6, 2008 at 10:55 pm
If you go to the command prompt and type "set processor_architecture" it will tell you what you are running on, but if it is 32 bit you should install x86.
December 6, 2008 at 5:32 am
It sounds like your application my be passing a GUID. If that is the case, just cast it to a uniqueidentifier in SQL and it will remove the curly...
December 3, 2008 at 12:25 pm
Something like this.
--Sample Data
Declare @Tbl Table (RoomID int)
Insert INTO @Tbl
Select 101
Union All
Select 102
Union All
Select 201
Union All
Select 202
Union All
Select 203
--Sample Query
SELECT
Distinct
RoomList = substring((SELECT ( ', '...
December 2, 2008 at 8:12 pm
My knowledge increased ten fold after participating in the forums. It is a great way to see how other people accomplish the same thing. Also, if you post...
December 2, 2008 at 1:25 pm
The query is asking for rows less than the current date. Every time you restore the database and run the query the date range is bigger which is returning...
December 2, 2008 at 1:03 pm
Here are some upgrade considerations.
First of all run the SQL 2005 Upgrade Advisor to make sure there are no compatability issues.
Restore the database to the new server.
Change the...
December 2, 2008 at 12:52 pm
But wait there's more...
These are a little less measureable, but if you give an example of when you did each one, you have met your goal.
Performance Goals
1. Customer Focus...
December 2, 2008 at 9:44 am
Here are a few things that may help...
Watch x webcasts a quarter/month.
Attend x community events such as user groups.
Take a test toward a certian certification. (you don't have to pass,...
December 2, 2008 at 9:29 am
2005 Express should install. Look at the supported OS's on the download page.
November 28, 2008 at 8:40 am
You can install Developer Edtion.
http://www.microsoft.com/sql/prodinfo/previousversions/system-requirements.mspx
November 28, 2008 at 7:02 am
This is from books online. It is still available in 2005, but it looks like it is not in 2008.
sp_runwebtask is retained for backward compatibility. New Web pages are...
November 27, 2008 at 6:26 pm
I was expecting at least a 10 point Turkey question on Thanksgiving. 😀
November 26, 2008 at 8:42 pm
Steven Webster (11/26/2008)
November 26, 2008 at 12:22 pm
Steven Webster (11/26/2008)
Can I ask your views on the following - I recently had auditors in and one of their recommendations was to increase the maximum...
November 26, 2008 at 8:43 am
Viewing 15 posts - 151 through 165 (of 358 total)