Viewing 15 posts - 6,331 through 6,345 (of 6,678 total)
Johannsky (7/19/2008)
Hello,Another issue i encounter today, does SQL server 2005 limits the data transfer on up to 50GB only when backing up on a network.
Thanks again.
We had a similar issue...
July 19, 2008 at 10:16 am
jonathanmreynolds (7/19/2008)
select
g.arrival as 'Arrival'
,g.departure as 'Departure'
...
July 19, 2008 at 9:51 am
ALZDBA (7/19/2008)
Thank you for providing the extra parameters Jeffrey.Apparently those weren't in BOL sep. 2007
Interesting, I didn't even think about the version of BOL I was using - but I...
July 19, 2008 at 9:39 am
jonathanmreynolds (7/18/2008)
As for your problem with multiple rows - that is going to be caused by the joins. In the following:
from transactions t
Inner Join...
July 18, 2008 at 11:39 pm
,(select sum(t1.amount)
from transactions t1
...
July 18, 2008 at 7:15 pm
jzurbo77 (7/18/2008)
I need to expand...
July 18, 2008 at 3:12 pm
Okay, I think this is what you are looking for - but I cannot be sure. I am not sure whether or not you need to tie transactions by...
July 18, 2008 at 2:18 pm
Take a look at the following:
Select name
,create_date
,modify_date
...
July 18, 2008 at 12:49 pm
Jose-cin (7/17/2008)
July 18, 2008 at 12:04 pm
If your database is in full recovery model, the best way to truncate the log is to back it up - frequently.
If your database is in simple recovery model -...
July 17, 2008 at 8:06 pm
Yes - I believe Standard only supports two nodes, but yes - it can be clustered.
July 17, 2008 at 5:12 pm
Keith Knox (7/17/2008)
thanks...
July 17, 2008 at 5:04 pm
I had to reformat this to get an idea of what is going on. Here is the reformatted query:
CREATE PROCEDURE usp_rptOpenTicketsByYard
AS
SELECT tblTickets.*
,tblTicketStatus.status
,tblTicketPriority.priority
,tblCallTypeSub.Description
,tblTicketCallTypes.CallType
,tblUsers.First_Name
,tblUsers.Last_Name
,tblYardInfo.YardName
,tblTickets.CreatedOn
,tblTickets.Yard
,tblTicketPriority.PriorityStatus
CASE
WHEN tbltickets.ProjectTicketOption = 0
THEN "Ticket"
ELSE "Project"
END
...
July 17, 2008 at 5:02 pm
First thing you need to do is check the SPN record for that instance of SQL Server. If you do not have access to this, talk to the network...
July 17, 2008 at 2:51 pm
Yes, you are right - ALL does not appear to be available for schema. So, you are going to have to list all of the permissions you want.
GRANT permission...
July 17, 2008 at 2:07 pm
Viewing 15 posts - 6,331 through 6,345 (of 6,678 total)