Viewing 15 posts - 16 through 30 (of 137 total)
yes Grant Select on both view and the table
February 25, 2014 at 7:23 am
Thanks for all the help. As I said using temp table did resolve the issue
February 17, 2014 at 9:17 am
Yes it is bunch of destination table fileds joined to the source table fields but not a denormalized table though. This was working fine until there were only 10 fields...
February 17, 2014 at 9:04 am
Thanks.
Checked SQL error and evenlogs can't find any erros
I have set the below on both source and destination server .Hope it works
sp_configure 'remote query timeout', 0
go
reconfigure with override...
February 15, 2014 at 2:12 am
Is it possible to delete old backups using SQL backup script with RETAINDAYS ?
November 4, 2013 at 8:57 am
leave a space between Servername and Varchar and script will run but it will not return any result for SQL 2008 or SQL 2008 R2
ServerName????????????varchar(256),
October 29, 2013 at 9:30 am
Try this
ServerName varchar(256)
New code does works for SQL 2005 but it doesn't return any result for SQL 2008 or SQL 2008
R2
October 29, 2013 at 9:06 am
can you not change your recovery model from simple to full and try taking log backups?
Because you can't take log backups when recovery model is simple
October 28, 2013 at 10:11 am
INSERT INTO Databasename2..EMPLOYEE2(EMPID, STARTTIME, ENDTIME, TASK, EVENTID, ADDRESS1)
SELECT a.EMPID, a.STARTTIME, a.ENDTIME, a.TASK, a.EVENTID, a.ADDRESS1
FROM dbo.table1 a LEFT OUTER JOIN Databasename2..EMPLOYEE2 b
ON a.EMPID = b.EMPID
AND a.STARTTIME = b.STARTTIME
AND a.EVENTID = b.EVENTID
AND...
September 19, 2013 at 4:46 am
Sorry for the delay I have now attached the query.
Query 1 and query 2 takes approximately two minutes to run but query 3 takes around 9 hours which was running...
September 16, 2013 at 7:48 am
Thanks Gail.
But decreasing max memory will have any impact on application users?
Increasing memory will resolve the issue? Am I right in saying that 10-12 % of total memory is enough...
August 23, 2013 at 7:04 am
Viewing 15 posts - 16 through 30 (of 137 total)