Viewing 15 posts - 1 through 15 (of 16 total)
Actually issue was somthing different.. We have column containing some blank values. So sometime this blank value print on just start of page and then group ends immediately after that...
March 1, 2013 at 6:33 am
My function is deleterministic.. I am accessing data from user table inside function and thats the problem (function is true for IsUserData objectproperty)..
So seems I have only option to...
February 20, 2013 at 7:09 am
i think this is partially posted :unsure:... actual one is http://www.sqlservercentral.com/Forums/Topic1414885-392-1.aspx
February 2, 2013 at 8:12 am
as I understand, you need row and column total in pivot result.. You can this query -
select *
,isnull([1 - Critical],0)+isnull([2 - High],0)+isnull([3 - Medium],0)+isnull([4 - Low],0) Total
from #tmp
pivot(sum(SevCount) for Severity...
February 2, 2013 at 8:05 am
Float is approximate data type. do not store the exact values specified for many numbers; they store an extremely close approximation of the value.
more details are available at - http://msdn.microsoft.com/en-in/library/ms187912%28v=sql.105%29.aspx
February 2, 2013 at 6:08 am
azdeji (3/28/2012)
----------------------------------------------
my problem is that it not working.
although you have both tables in same server / database, you have to pass values for all procedure parameters (@INSTANCE1, @DATABASE1 etc). don't...
March 29, 2012 at 12:19 am
I don't understand what OSQL does here.
I would connect to SQL 2000 with query analyzer as "RemoteSql" and try to query the linked server
we want to execute mentioned proc daily...
February 13, 2012 at 10:37 am
RemoteSql is sql login used by linked server security and it has full/admin access on remote server db.
PS: I had wrongly mentioned OSQL statement and error message above which...
February 13, 2012 at 6:49 am
Thanks GSquared..
But we are bulk inserting rows in history table (approx 1 lakh). So if we implement this we need to check row size every time before insertion and which...
October 7, 2011 at 7:40 am
Hi,
thanks for reply.
dont know exact reason but sql server service was running under domain user which I have changed to local system account and now its accessible using domain user...
September 29, 2011 at 12:43 am
I tried to execute SQL 2008 stored procedure from SQL 2000 linked server but its not working and throwing error 🙁 -
Msg 0, Level 11, State 0, Line 0
A severe...
August 25, 2011 at 7:00 am
Yes I have executed DBCC CHECKDB against SQL 2008 and found no error 🙁
August 24, 2011 at 8:02 am
It works! 🙂
log backup truncated successfully and now log backup is happening properly.
Thanks Gila Monster for your help.
September 2, 2010 at 3:17 am
Yes, full backup and differential backup both happening properly
August 31, 2010 at 7:54 am
Viewing 15 posts - 1 through 15 (of 16 total)