Viewing 15 posts - 24,691 through 24,705 (of 26,486 total)
For clarity in my code, this is how the query should be coded:
select
*
from
dbo.Provider
inner join dbo.Service
...
June 5, 2008 at 11:49 am
Let us know which way you go. I am curious which works better for you.
😎
June 5, 2008 at 11:45 am
Matt, could be. Best thing would be for the OP to test both and decide from there. With my very minimal test code, who knows.
😎
June 5, 2008 at 11:30 am
Do you currently have periodic transaction log backups running on the principle database? If not, you need to start doing so. The transaction log is not truncated by...
June 5, 2008 at 11:23 am
In addition to the DDL and sample data, show us what the result set should look like based on the sample data.
I'm a little confused by the correlated subquery back...
June 5, 2008 at 11:03 am
I recognize the code, and it was I.
Here is a link to an article that may help: http://www.sqlservercentral.com/articles/Performance+Tuning+and+Scaling/bewareofsearchargumentsargdatatypes/2485/
😎
June 5, 2008 at 10:49 am
Hope this helps:
create table dbo.Provider (
ProviderID int,
ProviderName varchar(25)
)
create table dbo.Service (
ServiceID int,
StructureID int,
...
June 5, 2008 at 10:35 am
What does the data in the following fields look like:
[INITIAL_ASSESSMENT_TIME] (char(4))
[TIME_SEEN_FOR_TREATMENT] (char(4))
[ATTENDANCE_CONCLUSION_TIME] (char(4))
[DEPARTURE_TIME] (char(4))
😎
June 5, 2008 at 10:25 am
John,
Had a great time in North Platte, NE. Only problem I had was figuring out which way was north. No mountains to the west of me to help....
June 5, 2008 at 10:14 am
Here is an article that you should read: http://www.sqlservercentral.com/articles/Best+Practices/61537/
I am still confused as to what you are trying to do. If you take the time to follow the suggestions...
June 5, 2008 at 9:54 am
Curious, looking at your code, are you running SQL 2005 or SQL 2000?
😎
June 5, 2008 at 9:38 am
Okay, I'm confused about what you are really trying to do. Please provide the DDL of the tables, some sample data (in the form of insert statements), and the...
June 5, 2008 at 9:28 am
ORDER BY in a cursor works. Copy my code and test it.
😎
June 5, 2008 at 9:23 am
You haven't completely answered my question. In both ID 1 and ID 2, you have a field that is blank. If that field is NOT blank the next...
June 5, 2008 at 9:16 am
Viewing 15 posts - 24,691 through 24,705 (of 26,486 total)