Viewing 15 posts - 7,276 through 7,290 (of 8,760 total)
Quick thought, grab the SysInternals utility which shows open files, cannot remember the name but should be easy to find. It will show if any process is accessing the file....
August 29, 2014 at 10:06 am
Duran (8/29/2014)
August 29, 2014 at 7:06 am
Quick question, are you on SQL Server 2008 (not R2) 32bit?
😎
August 29, 2014 at 2:05 am
Quick suggestion, count each table content in a separate CTE and join them for the combined results
😎
USE tempdb;
GO
/* Test data */
WITH SYNCHMESSAGE (M_KEY,M_MSG) AS
(
SELECT
...
August 28, 2014 at 11:05 pm
Evil Kraig F (8/28/2014)
August 28, 2014 at 10:47 pm
In my opinion, setting the actual port number for each instance should be avoided unless absolutely necessary. Leave this to the SQL Server Browser Service
😎
August 28, 2014 at 10:37 pm
Here is the first part and the goal of this part is to improve the yearweek table which then allows us to do a direct join to it rather than...
August 28, 2014 at 10:09 pm
Quick thought, isn't Merge Cells what you are after here?
😎
August 28, 2014 at 9:57 pm
The code fails because the first character in the Pattern sequence is NCHAR(0). Any usage of the string will recognise this as the end of the string, truncating the string...
August 28, 2014 at 9:50 pm
smart_analyst (8/28/2014)
I am using one input variable school_name...
August 28, 2014 at 9:28 pm
sqlfriends (8/28/2014)
For example some retired db is at version 2000 and only works with 2000, some with 2005 etc.
So...
August 28, 2014 at 1:54 pm
Some good points you make there Steve, thanks!
But now a days computers are such a robust stable platforms, with such a stable reliable storage media, used by very competent and...
August 28, 2014 at 1:45 pm
Quick thought, my preferred approach would be a named SQL Server instance, normally SERVERNAME_OLD. Kind of in line with Jeff's suggestion. Reason being that normally there are more than one...
August 28, 2014 at 1:14 pm
Ed Wagner (8/28/2014)
Lynn Pettis (8/28/2014)
August 28, 2014 at 1:00 pm
Viewing 15 posts - 7,276 through 7,290 (of 8,760 total)