Viewing 15 posts - 24,961 through 24,975 (of 26,490 total)
I will be leaving work shortly. I have a school event for my youngest followed with my hitting the High School pitch (got a JV game to officiate!).
Next week...
March 21, 2008 at 1:21 pm
Okay, I used sp_send_dbmail to send an email to one of my coworkers, who replied to it, and it went just where I expected it to go, me. So...
March 21, 2008 at 1:15 pm
Jack Corbett (3/21/2008)
Lynn,
What mail server are...
March 21, 2008 at 1:00 pm
Interesting. I have a reply-to address setup for my Database Mail profiles and it seems to work just fine. I'd be interested in hear what you find in...
March 21, 2008 at 8:11 am
Just curious, but what is wrong with the following code:
update dbo.TeamBalance set
Balance = Balance - @Purchase
where
TeamId = @TeamId
and...
March 21, 2008 at 7:36 am
Jeff Moden (3/20/2008)
That would have been a good one to ask for some data on... 😉
Yea, not being very consistant on that am I. But I had some time...
March 20, 2008 at 8:24 pm
It would help if you could provide the DDL for the tables, sample data in the form of an insert with unioned select statements.
Please, only provide enough detail to assist...
March 20, 2008 at 7:53 pm
I'm not sure what problem you are having. Please review what I have done and tell me what I may have missed.
create table dbo.incspc_test (
incspc_type...
March 20, 2008 at 7:47 pm
This is the original query, reformatted for easier reading with the
dirived table.
SELECT
RowID
FROM
dbo.del_duplicates Tbl1
Left Join (SELECT
...
March 20, 2008 at 7:28 pm
Marvin,
The only reason I found that what I wrote was cleaner was I started to turn your derived table into a CTE and discovered the duplication in the query. ...
March 20, 2008 at 3:24 pm
MD (3/20/2008)
UPDATE CLIENT
SET PRODUCT_CODE = b.NEW_CODE
FROM CLIENT, (SELECT OLD_CODE, NEW_CODE FROM PRODUCTS_CODE, CLIENT WHERE OLD_CODE...
March 20, 2008 at 1:01 pm
You mean something like this:
select
StartDate1,
StartDate2,
case when datediff(dd,StartDate1, StartDate2) <= 30
...
March 19, 2008 at 4:16 pm
Okay, having several SQL Server 2000 systems here, I looked at the properties of a database on one of the SQL Server 2000 servers, and the only compatibilty modes availabe...
March 19, 2008 at 3:27 pm
Run the following query on the server and post back the results:
select @@version
March 19, 2008 at 3:22 pm
In SSMS, right click on the database, select properties. Select Options under Select a page. On the right side you should see a drop down box with the...
March 19, 2008 at 3:20 pm
Viewing 15 posts - 24,961 through 24,975 (of 26,490 total)