Viewing 15 posts - 61 through 75 (of 518 total)
One possible way to perform this would be to have another table with all possible dates in it, and join to this table.
ie....
Select B.Date, A.name, A.location from
events A inner join Dates...
April 3, 2006 at 11:02 am
This is an extended stored proc, so the errors reported and passed are out of our hands.....
There is possibility using the new try catch in SQL 2005......what db server are you...
April 3, 2006 at 10:56 am
I have worked with Sql Server in some of the highest concurrency enviroments in the nation. Some of them have been financial systems, some E-commerce, some order placement, some even...
April 3, 2006 at 9:15 am
This looks like the typical scenario involving a set of filtered publication/subscriber replications, either Bi-Directional Transactional or Merge. What exactly is your question?
March 30, 2006 at 12:16 pm
It would have to be because somewhere in the joins, your causing the rows to be duplicated. Without knowing the data, and structure, I couldn't say for sure, but that...
March 30, 2006 at 11:05 am
The most definitive answer for this is easy.
1. Create your clustered index on your best guess column, using common sense and recommendations. And other indexes on whatever other columns...
March 30, 2006 at 10:09 am
Here ya go:
SELECT
CASE
WHEN
LEN(LTRIM(RTRIM(dbo.
March 30, 2006 at 9:40 am
The results you want are easily generated by three seperate distinct statements.
Select Distinct A From Table
Select Distinct B From Table
Select Distinct C From Table
Unless there is some relation between A, B, and...
March 30, 2006 at 9:32 am
Select
D.DeptName, E.Name
From
department D
Left
Outer...
March 27, 2006 at 9:25 am
This really depends on what your definition of "successful" is.
If it is "Stored Proc Worked." then you already get that by the error handling. You'll get an error if it...
March 24, 2006 at 10:13 am
At a prior site I worked at, we had a similar task to perform. What we did, was to create a control table on both sides of the replication, having...
March 24, 2006 at 9:14 am
Or you could use this:
SELECT
Dateadd(qq,-1,(DATEADD(ms,-3,
March 24, 2006 at 9:06 am
OK, maybe I'm being simplistic, but if your statement gives you the last day of the prior period, with an input of getdate, why not use that as the input...
March 24, 2006 at 8:57 am
If your using a straight linked table within ACCESS, you cannot do it without re-linking the table, as it performs the link using the objectID of the table in SqlServer.
Another...
March 24, 2006 at 8:28 am
Viewing 15 posts - 61 through 75 (of 518 total)