Viewing 15 posts - 1,486 through 1,500 (of 1,838 total)
hit the key combination [ctrl] + [shift] + [R], that causes the intellisense to refresh the current window. It usually only gets the object names once when you first...
March 30, 2012 at 11:23 am
wayne.mcdaniel (3/30/2012)
- get the physical file names and locations
- put the database in single user mode
-...
March 30, 2012 at 9:43 am
you may want to check if there's a different execution plan used when the proc is called from management studio vs. the application. One of the culprits to check...
March 23, 2012 at 9:27 am
interesting problem, I think windowed functions work well here:
SELECT RelationshipID
, ParentID
, ChildID
, RoleID
, StatusID
...
March 23, 2012 at 8:58 am
ColdCoffee (3/22/2012)...but the cast to nvarchat after casting to float or using PARSENAME right over casting of float induces the rounding off...
seems to be a common problem, converting anything from...
March 22, 2012 at 2:56 pm
actually I think it's the explicit conversion to FLOAT that messes up both of our solutions not any implicit conversion, so ColdCoffee's solution may be brute force, but without an...
March 22, 2012 at 2:28 pm
how about something like this to figure out the most decimal places used in the table:
SELECT MAX( CHARINDEX('.',REVERSE(CAST(CAST(val AS float) AS varchar(11)))) -1 )
FROM tablename
WHERE...
March 22, 2012 at 12:22 pm
anish_ns (3/22/2012)
..."SQL Server Event Alert" Severity "011 - Specified Database Object Not Found"...
I think the problem is by default, severity 11 errors don't get logged, and SQL Server will only...
March 22, 2012 at 11:47 am
I'd have to say the car that best describes me is an early 90's Acura Integra. Not too flashy, but gets you where you're going quickly, efficiently, and very...
March 22, 2012 at 10:46 am
What your solution does is create a triangular join, which will not scale well in a real world situation with more records than your sample. The article Eugene posted...
March 7, 2012 at 10:00 am
ssdba (3/6/2012)
March 7, 2012 at 6:51 am
Is this system an OLTP system? Are you able to determine if the deadlocks are being created by writes blocking writes or are there some caused by reads?
If writes...
March 6, 2012 at 3:02 pm
I'm not sure that MSDN link really answers your question. If you're referring to the actual tables in a SQL Server database then no it doesn't make sense to...
March 6, 2012 at 2:14 pm
peter.row (2/23/2012)
Can the task be configured to use SFTP?
A very good solution I've been using for a couple years now is at:
They have a number of usefull task components in...
February 23, 2012 at 10:39 am
[RANT] Nothing wrong with the question or answer, but I do have a comment on Microsoft's implementation of SQL Agent security. In typical Microsoft way it's confusing by role...
February 7, 2012 at 10:57 am
Viewing 15 posts - 1,486 through 1,500 (of 1,838 total)