Viewing 15 posts - 1,576 through 1,590 (of 2,268 total)
It's not really a good idea to have a job that Shrinks your database daily., this will cause massive fragmentation and will cause the database to run slowly. You...
February 9, 2009 at 3:23 am
Ahmad Osama (2/5/2009)
5 clients to start with..Is there any other way to handle this scenario.....
I would use 5 seperate databases, rather than instances..
What problems do you expect with one database...
February 5, 2009 at 10:53 am
Ahmad Osama (2/5/2009)
GilaMonster (2/5/2009)
Ahmad Osama (2/5/2009)
GilaMonster (2/4/2009)
Why do you want to truncate and/or shrink your transaction log?
I have a job to rebuild indexes..this increases the transaction log size....so i...
February 5, 2009 at 10:50 am
Okay Thanks,
Without updating the code or updating the data then there is not really much that can be easily done..
February 5, 2009 at 10:34 am
toni.sala (2/5/2009)
We're using SQL Server 2005 as a Microsoft Business Solutions Navision Data Server and we're experiencing several performance problems that we solve in 2 ways:
1) Rebooting the server. We've...
February 5, 2009 at 10:32 am
'5.0' will not convert to an integer as it can not interpret the '.0' part, since INT can't handle decimals. Try using Numeric data type but this...
February 5, 2009 at 10:23 am
Make sure you also include log file backups
February 5, 2009 at 8:22 am
okay then you add this with a aggregate funciton in the select clause
SELECT
CL.ClientID,
GS.CodeDescription AS Specialty,
MAX(AAP.AppointmentDate) as MaxAppointmentDate
FROM
...
February 5, 2009 at 7:06 am
Is it only the posted query that is slow, or all queries?
Are you able to post the Actual Execution plan rather than the estimated one?
February 5, 2009 at 6:59 am
For the values that are repeating over the rows, such as referral source and speciality then you just add these to the select statement and group by clause.
But for...
February 5, 2009 at 6:47 am
SELECT
CL.ClientID,
GS.CodeDescription AS Specialty
FROM
AMSAppointment AAP INNER JOIN AMSAppointmentContact APC
ON APC.SequenceID =...
February 5, 2009 at 5:04 am
So you want to group by the ClientId and CodeDescription
Out of the other columns, which ones have values that are not distinct?
Or post a sample of the output of the...
February 5, 2009 at 4:06 am
select Distinct
or use Group by and Aggregate functions on the required columns.
if you want specific help then post the query and table structure..
February 5, 2009 at 3:49 am
i haven't really used the file system task a lot so may not be much help.
Checking if the file exits with a 'dir' command or something would be the best,...
February 5, 2009 at 3:27 am
Viewing 15 posts - 1,576 through 1,590 (of 2,268 total)