Viewing 15 posts - 5,416 through 5,430 (of 13,460 total)
in his example, at least one value was "1.5", so th3ey are not single character items.
Lowell
June 7, 2012 at 2:22 pm
the error message is related to debugging.
do you really need to debug the CLR?
why not just deploy the project, then test it in q window for known pattern/values?
Lowell
June 7, 2012 at 1:19 pm
i'm thinking it has to do with the target tables, and not anything to do with the temp tables;
i read his comment as disabling reading data into temp tables,...
Lowell
June 7, 2012 at 7:22 am
i thought the issue might be related to the altering of the indexes; that would count as a schema change.
Some of which disable indexes and re enable them after...
Lowell
June 7, 2012 at 6:35 am
don't allow a GO to exist inside the comments:
WHERE #enr_detail.acc_nr = drsmas.drs_acc
GO */
Lowell
June 7, 2012 at 6:03 am
Boooks online says a the argument expects a varchar/nvarchar(128) for the max size.
QUOTENAME ( 'character_string' [ , 'quote_character' ] )
Arguments
'character_string'
Is a string of Unicode character data....
Lowell
June 6, 2012 at 2:06 pm
did you rebuild the indexes or update statistics on the new server yet?
this would be especially true if the database you restored came from a different version of SQL...the engine...
Lowell
June 6, 2012 at 1:33 pm
you could query sys.assemblies;
i'm sticking the results in a global temp table for ease of reporting, for example:
CREATE TABLE [dbo].[##RESULTS] (
[DBNAME] ...
Lowell
June 6, 2012 at 12:58 pm
you need to calcualte the counts, and apply the ROTT calculation to that;
by simply wrapping the grouping as a subquery, this gives you what you are after:
select @rott as ROTT,
(count_of_referrals...
Lowell
June 6, 2012 at 12:37 pm
try to see if it's convertable from binary to text:
i don't have any reportingservices that are touchable to test:
select
CONVERT(NVARCHAR(max),CONVERT(VARBINARY(max),ConnectionString)) As ConversionAttempt,
ConnectionString,*
from ReportServer..DataSource
Lowell
June 6, 2012 at 11:25 am
Sql integer division: int / int =int, not the decimal you are expecting.
Change @rott /100.0 and it should work as expected.
Lowell
June 6, 2012 at 10:34 am
details are in order, i think.
are you really just running 'dir d:\runtime\SomeExec.exe' (directory!) or are you EXECUTING 'd:\runtime\SomeExec.exe'
how do you know "nothing" happened?
what does the executable do?
does it...
Lowell
June 6, 2012 at 7:06 am
Microsoft indirectly butters my bread, so to speak, as I'm doing dev/web/sql stuff all in SQL Server and .NET technologies. All my coding efforts at work are on that platform.
As...
Lowell
June 6, 2012 at 6:33 am
alpeshchauhan (6/6/2012)
yes i have question how i find the after make views in oracle, how i can see main view sysntex in oracle?pls help me.:-)
the DESC (DESCRIBE) command is...
Lowell
June 6, 2012 at 6:23 am
did you have a question? you can edit your post to provide the missing info so we can help.
Lowell
June 6, 2012 at 5:29 am
Viewing 15 posts - 5,416 through 5,430 (of 13,460 total)