Viewing 12 posts - 1 through 12 (of 12 total)
Minaz Amin (2/15/2015)
How do I...
February 24, 2015 at 12:39 pm
Yes I have come across this myself and really there are only two ways around it.
1. Rebooting the SQL instance which normally clears those old tempDB files from the...
February 24, 2015 at 12:21 pm
DBCC FREESESSIONCACHE removes all queries from the distributed query cache. This however does not impact anything in the standard procedure cache, to clear the standard procedure cache use DBCC FreeProcCache...
February 12, 2015 at 2:25 pm
Do you have any other linked servers setup on this server?
Setup linked servers. Had to run the following command to enable data access between systems to get linked servers working...
January 29, 2015 at 3:34 pm
So I convinced them to do something like this: http://www.mssqltips.com/sqlservertip/2085/sql-server-ddl-triggers-to-track-all-database-changes/ Copy the updates to an audit table, then do a sql agent job to copy that ?...
January 27, 2015 at 2:54 pm
Hey thanks for your input. I just passed your post onto that developer and I'll see what they say. You make some very good points.
January 27, 2015 at 1:55 pm
Linked servers are already setup between these two SQL servers. What they want is when it's updated on production, it gets updated on Development as well.
January 27, 2015 at 1:36 pm
I also have a need for previous week. How would I go about editting this code?
where event_time >= curdate() - INTERVAL DAYOFWEEK(curdate())+6 DAY
AND event_time < curdate() - INTERVAL DAYOFWEEK(curdate())-1...
January 8, 2015 at 8:31 am
Luis Cazares (1/7/2015)
SELECT * INTO #Wrap
FROM OPENQUERY( Shoretel_Ccir, 'SELECT e.g_event_id,wc.w_name,e.event_id,ep.agent_id,
a.a_name,et.event_name,g.g_name,e.event_time,rc.rc_name,month(e.event_time) as ''Month'',YEAR(e.event_time)...
January 8, 2015 at 8:01 am
I tried this and ran the report and it came back with this..
An error occurred during the local report processing. Query execution failed for dataset 'DataSet1' Cannot get...
January 8, 2015 at 7:55 am
I did try this, but it still just gave me the same month's data.
January 7, 2015 at 2:47 pm
Viewing 12 posts - 1 through 12 (of 12 total)