Viewing 15 posts - 24,691 through 24,705 (of 26,490 total)
Hit BOL (Books On-Line). If, after reading, you still have questions just post your question on SSC and I'm sure some one will help you out.
😎
June 5, 2008 at 1:46 pm
You'll also have to secure the backup file itself. The file is not encrypted, and if the system admin can move the backup file to a local system (desktop)...
June 5, 2008 at 1:32 pm
First, the while loop makes this code RBAR (a Modenism for Row By Agonizing Row). Also, it looks like it may have to do a table scan for each...
June 5, 2008 at 1:17 pm
And here is my version:
set nocount on;
create table dbo.OrderHdr (
OrderID int,
FirstName varchar(25),
LastName varchar(25),
OrderDate datetime,
...
June 5, 2008 at 1:06 pm
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
Viewing 15 posts - 24,691 through 24,705 (of 26,490 total)