Viewing 12 posts - 1 through 12 (of 12 total)
fwiw, MS exams don't tend to...
January 20, 2017 at 7:35 pm
thanks hopper.. i will check where exactly my team require this.
July 17, 2012 at 2:13 am
rs -i myfile.rss -s http://localhost/reportserver
-v datasource=Northwind
myfile.rss is a vb script file. sample file can be found on net. simple script contains details of the report/datasouce need...
August 8, 2011 at 5:29 am
hi vedran,
thank for you reply.
yes i am agree with-nolock read dirty rows but this is confirmed that there will be no transaction rollback.
so there is no harm in using no...
April 27, 2011 at 10:29 pm
yes, till now its relational database only! thanks :-)for your suggestion.
January 17, 2011 at 8:42 pm
I know that temp tables are created in tempdb by default and automatically dropped on session close.
he was telling that there would be more logging, caching etc. in case...
November 18, 2010 at 4:18 am
thanks for your quick reply jeff.
Although i am already using temp tables, but my boss:):-D suggested me use physical table instead and like you i was also surprised.
November 17, 2010 at 10:50 pm
Thank you GilaMonster, Eugene and Paul for your valuable inputs
@paul-2 : I will cheer for newzeland during next india-newzeland battle;-)
July 2, 2010 at 2:18 am
hi kingstom,dev
thank for u ur quick reply.
derived/nested query is ok. but we will have a performance issue with this.
i thought there would be some other way around if i want...
June 25, 2010 at 2:07 am
hi Gianluca,
here is an example
create table #TransactionTable
(
ClientCode varchar(50),
buyqty bigint,
sellqty bigint,
rate decimal
)
insert into #TransactionTable values('1001',20,30,10)
insert into #TransactionTable values('1001',10,30,8)
insert into #TransactionTable values('1001',80,30,9)
insert into #TransactionTable values('1002',2,30,20)
insert into #TransactionTable...
June 25, 2010 at 1:59 am
Viewing 12 posts - 1 through 12 (of 12 total)