Viewing 15 posts - 1 through 15 (of 31 total)
After sleeping on this, I think that I might be able to setup a redirect through the local ODBC connector on the workstation???
I'll let everyone know
Thanks
Bill
May 1, 2007 at 11:26 am
We are using exchang and as far as I know SMTP is enabled on default port.
Bill
April 6, 2007 at 8:24 am
Thanks all
That makes complete sense now that I think about it. This fourm is great!
Bill
February 21, 2007 at 12:30 pm
What I found from searching web pages:
sql agent needs to be run under a domain sqladmin account. It's working now
thanks
William
February 15, 2007 at 8:25 am
For whatever it's worth, I ran across this article. Highly recommending 2003 over 2000
http://www.sql-server-performance.com/operating_system_tuning_w2003.asp
William
February 7, 2007 at 12:20 pm
Ben
Why is it a debate to turn on hyperthreading?
Thanks
William
February 7, 2007 at 11:20 am
Hi Robert:
I actually had to set the time back one hour
William
January 4, 2007 at 11:18 am
Worked like a champ!!!
Thank you so much
William
January 3, 2007 at 1:50 pm
So to use this would the complete statement look like:
update table where record_id = 'abc'
set event_date = SELECT DATEADD(hh, DATEDIFF(hh, 0, '2007-01-03 09:59:59.997') + 1, 0)
Thanks
William
January 3, 2007 at 12:46 pm
Yup, I'll give that a try in a while. Generally the developers don't have access to sa.
I'll let the thread know what happens when I try this.
William
December 13, 2006 at 10:51 am
This is just plain odd - we won't be using sa for the ODBC anyway. We are using Crystal 10 and one of the developers noticed this.
I even went...
December 13, 2006 at 10:40 am
I checked the views and they are owned by dbo.
I still can't figure this one out
Thanks
William
December 12, 2006 at 11:24 am
Thanks guys
Both solutions worked Great!!!!
William
December 5, 2006 at 9:40 am
Thanks All for your help.
In Summary
to locate orphaned records run:
SELECT
n.Customer_ID
FROM
Notes n
LEFT JOIN Customer c
ON n.Customer_Id = c.Customer_Id
WHERE
c.Customer_Id IS NULL
To remove orphaned records run:
DELETE FROM Notes
WHERE ...
September 28, 2006 at 10:36 am
Thanks Grasshopper.
I'll give that a try too. What you have offered makes complete sense.
Thanks
William
September 26, 2006 at 8:49 am
Viewing 15 posts - 1 through 15 (of 31 total)