Viewing 15 posts - 2,191 through 2,205 (of 3,011 total)
What it the DBA's objection?
What is the volume of email that you are planning to send?
Is it fairly simple email, or does it have a lot of attachments?
Database Mail seems...
October 17, 2008 at 8:18 am
One thing that helps to drive this is the amount of support staff that can be available remotely. I work in a company with a large on-site data center,...
October 16, 2008 at 8:37 am
ppreston (10/7/2008)
October 7, 2008 at 4:33 pm
Just giving this a bump to see if anyone knows about this.
October 6, 2008 at 9:14 am
This should get you started.
select
a.[Cust],
Order1= a.[Order],
Order1Date= a.[Date],
Order2= b.[Order],
Order1Date= b.[Date]
from
Orders a
join
Orders b
on
a.[Cust]= b.[Cust]and
a.[Order]<> b.[Order]and
a.[Date]<= b.[Date]and
a.[Date]> dateadd(dd,-7,b.[Date])
order by
a.[Cust],
a.[Order],
b.[Order],
b.[Date]
October 3, 2008 at 4:08 pm
It is a good rule to always have an index on the columns in a FK.
If the FK table is large, deleting a row from a PK table will result...
September 24, 2008 at 2:31 pm
It is probably an offset in seconds or milliseconds from some starting point in time.
You might try 1970-01-01 00:00:00.000 (start point for Unix time) as a start time, and use...
September 17, 2008 at 5:08 pm
How big is your database backup file? Tell the vendor to send you a USB drive that is big enough to hold it. If necessary, you can zip...
September 10, 2008 at 3:37 pm
Michael Earl (9/9/2008)
The alternate universe in which two files could be in the same folder with the same name would be a very confusing place to...
September 9, 2008 at 12:10 pm
You need to look at the maintenance windows for each application.
If one can only be down on Saturday evening from 18:00 to 21:00 and the other can only be down...
September 8, 2008 at 9:42 am
Yes, I saw the same thing when I changed my code to a permanent table. However, that is not really proof that there is no case with a permanent...
September 6, 2008 at 10:56 am
I would say the DBA is being stupid about this. The query is obviously not returning the results in the correct order when the application requires it, so why...
September 6, 2008 at 9:38 am
I have posted examples like this on SQLTeam several times that shows a select from a table with a clustered index that returns results not in cluster index order. ...
September 6, 2008 at 9:17 am
Another thing to be aware of is that there are some zip codes that have addresses in two states.
September 5, 2008 at 7:27 pm
Viewing 15 posts - 2,191 through 2,205 (of 3,011 total)