Viewing 15 posts - 31 through 45 (of 246 total)
Ravi,
try
BACKUP DATABASE QAS
TO DISK ='Q:\SQLBackups\QAS.BAK'
August 4, 2009 at 11:51 pm
Hi Expertz,
Please help me with these posts............
http://www.sqlservercentral.com/Forums/Topic763933-65-1.aspx
http://www.sqlservercentral.com/Forums/Topic754722-65-1.aspx#bm757143
August 4, 2009 at 9:52 pm
Make sure you don't have any conflicting primary keys.
July 21, 2009 at 10:51 pm
Jinu try this:
select distinct
emp.First_Name,emp.Last_Name,emp.Middle_Name,
comp.employee_id,comp.request_dt,comp.numofdays,
comp.reason,comp.request_by,comp.approve_dt,
tech.First_Name+' ' +tech.Last_Name+' '+isNull(tech.Middle_Name,'') as REQUESTEDBY,
comp.approve_status,comp.approve_desc,
...
July 21, 2009 at 4:24 am
Try doing these
First:
In database property set query time out to 0, It's default vaule is 600.
Second:
In your connection string add "Connection Timeout = 0"
Third:
When you executing your stored procedure or...
July 21, 2009 at 3:28 am
Ken McKelvey (7/16/2009)
SELECT DISTINCT
emp.First_Name
,emp.Last_Name
,emp.Middle_Name
,comp.employee_id
,comp.request_dt
,comp.numofdays
,comp.reason
,comp.request_by
,comp.approve_dt
,tech.First_Name + ' ' + tech.Last_Name + ' ' + COALESCE(tech.Middle_Name, '') AS REQUESTEDBY
,comp.approve_status
,comp.approve_desc
,COALESCE(approve.first_name + ' ' + approve.last_name, '') AS APPROVEBY
FROM employee_tbl emp
JOIN l_compoff_tbl...
July 17, 2009 at 1:11 pm
Elliott W (7/16/2009)
Transactional Replication perhaps?CEWII
Elliott,
What about Merge replication for bi-directional synchronization.
July 17, 2009 at 5:25 am
You may receive this error message when the following conditions are true:
• SQL Server 2005 or SQL Server 2000 is installed on a cluster.
• You are connecting to a SQL...
July 16, 2009 at 1:37 am
The issue was caused by a an sp that was running for a long time which did some indexes and some sortings....
Couldn't figure out what exactly it does...
But once i...
July 16, 2009 at 1:15 am
Ya had tried that
I killed the processes accessing the tempdb and the shrunk the data file...
And that worked....
Is this the case for every other databases should we kill the...
July 15, 2009 at 10:40 pm
Check if the user has sufficient privileges to exec the jobs.
Check if he has these roles
# SQLAgentUserRole
# SQLAgentReaderRole
# SQLAgentOperatorRole
July 9, 2009 at 4:31 am
Check if the user has sufficient privileges to exec the jobs.
Check if he has these roles
# SQLAgentUserRole
# SQLAgentReaderRole
# SQLAgentOperatorRole
July 9, 2009 at 3:17 am
Actually a user had problem in installing SP2 so it caused error while installing SP1 since some parts of the SP2 got installed and the registry got updated.
Now we successfully...
July 9, 2009 at 3:10 am
Viewing 15 posts - 31 through 45 (of 246 total)