Viewing 15 posts - 1,396 through 1,410 (of 2,171 total)
Can you provide some sample data?
August 20, 2007 at 10:34 am
If you post your table DDL, maybe we can find a new way to return the records you want.
Now that you have CTE's available, it should be easy.
August 20, 2007 at 10:31 am
Try this for a SQL Server 2005 solution
SELECT
<Col List Here>
FROM
(
SELECT
August 20, 2007 at 8:00 am
sp_spaceused is stored in MASTER database.
Make a copy and edit as you wish.
USE [master]
GO
/****** Object: StoredProcedure [dbo].[sp_spaceused] Script Date: 08/20/2007 15:55:32 ******/
SET
...
August 20, 2007 at 7:57 am
No. The showing of the data has to be done in your ASP page, by calling the SP.
Or, you can create an HTML page from your SP, but why would...
August 20, 2007 at 6:56 am
Do you think this is vital information?
If so, you should have posted this in your original post.
August 20, 2007 at 4:05 am
I guess typos are geting more advanced each day.
August 18, 2007 at 1:12 pm
It seems overlapping is OK, he only wants the date ranges where the date is completely missing.
This was asked as SQLTeam.com recently, I just can't remember the topic ID.
August 18, 2007 at 2:52 am
Nah, too easy
August 17, 2007 at 3:22 am
You can do this if you are a member of the local administrators of the machine where sql server is running.
August 17, 2007 at 2:12 am
If your table WellsResubmit_Staging already has an IDENTITY column,
SELECT
MAX(SellerUserID),
MAX(BusinessName),
MAX
August 16, 2007 at 5:24 pm
-- Stage the data
SELECT CASE
WHEN ResubmitDetails LIKE 'Seller UserID:%' THEN
August 16, 2007 at 5:21 pm
SELECT MAX(
CASE
WHEN ResubmitDetails LIKE 'Seller UserID:%' THEN RTRIM(LTRIM(SUBSTRING(ResubmitDetails, 15, 8000)))
ELSE ''
END
  AS SellerUserID,
MAX(
CASE
WHEN ResubmitDetails LIKE 'Business Name:%' THEN RTRIM(LTRIM(SUBSTRING(ResubmitDetails, 15, 8000)))
ELSE ''
END
 
August 16, 2007 at 3:14 pm
Viewing 15 posts - 1,396 through 1,410 (of 2,171 total)