Can someone point me in the right drections?
I need detailed info on the benefits of IL3 Cache when considering new
hardware.
Thanks,
-Ben
See:
http://www.sql-server-performance.co...nce_update.asp
http://www.2cpu.com/articles/99_1.html
GertD@.SQLDev.Net
Please reply only to the newsgroups.
This posting is provided "AS IS" with no warranties, and confers no rights.
You assume all risk for your use.
Copyright SQLDev.Net 1991-2004 All rights reserved.
"Ben" <bmilliron@.gmail.com> wrote in message
news:O3dNLmekEHA.3152@.TK2MSFTNGP12.phx.gbl...
> Can someone point me in the right drections?
> I need detailed info on the benefits of IL3 Cache when considering new
> hardware.
> Thanks,
> -Ben
Showing posts with label detailed. Show all posts
Showing posts with label detailed. Show all posts
Monday, March 12, 2012
IL3 Cache Recommendations and Explaination
Can someone point me in the right drections?
I need detailed info on the benefits of IL3 Cache when considering new
hardware.
Thanks,
-BenSee:
http://www.sql-server-performance.com/jc_processor_performance_update.asp
http://www.2cpu.com/articles/99_1.html
GertD@.SQLDev.Net
Please reply only to the newsgroups.
This posting is provided "AS IS" with no warranties, and confers no rights.
You assume all risk for your use.
Copyright © SQLDev.Net 1991-2004 All rights reserved.
"Ben" <bmilliron@.gmail.com> wrote in message
news:O3dNLmekEHA.3152@.TK2MSFTNGP12.phx.gbl...
> Can someone point me in the right drections?
> I need detailed info on the benefits of IL3 Cache when considering new
> hardware.
> Thanks,
> -Ben
I need detailed info on the benefits of IL3 Cache when considering new
hardware.
Thanks,
-BenSee:
http://www.sql-server-performance.com/jc_processor_performance_update.asp
http://www.2cpu.com/articles/99_1.html
GertD@.SQLDev.Net
Please reply only to the newsgroups.
This posting is provided "AS IS" with no warranties, and confers no rights.
You assume all risk for your use.
Copyright © SQLDev.Net 1991-2004 All rights reserved.
"Ben" <bmilliron@.gmail.com> wrote in message
news:O3dNLmekEHA.3152@.TK2MSFTNGP12.phx.gbl...
> Can someone point me in the right drections?
> I need detailed info on the benefits of IL3 Cache when considering new
> hardware.
> Thanks,
> -Ben
Friday, February 24, 2012
IIF statement problem
Hello,
I'm having a problem with the iif statement. Seems that the conditional
never evaluates to true,
=iif(CountRows() = 0, "Detailed Report", Fields!Client_Name.value & "
Detailed Report")
Basically I'm checking if the recordcount is 0, if so - display "Detailed
Report", if not - then display "<Client Name> Detail Report"
Even though the CountRows value = 0, which I checked in a test textbox, it
still never displays "Detail Report" - it just comes up blank...any idea
what the problem is? thanksIf Fields collection is used in NoRows situation whole expression evaluates
to null (preview gives warning)
The workaround is:
Create textbox and set its value to
=Fields!Client_Name.Value
and make it hidden
When refer to that textbox instead of field:
=iif(CountRows() = 0, "Detailed Report", ReportItems!<textboxname>.Value & "
Detailed Report")
--
This posting is provided "AS IS" with no warranties, and confers no rights.
"RS Developer" <idroppededabomb@.hotmail.com> wrote in message
news:%238g1U25gEHA.1652@.TK2MSFTNGP09.phx.gbl...
> Hello,
> I'm having a problem with the iif statement. Seems that the conditional
> never evaluates to true,
> =iif(CountRows() = 0, "Detailed Report", Fields!Client_Name.value & "
> Detailed Report")
> Basically I'm checking if the recordcount is 0, if so - display "Detailed
> Report", if not - then display "<Client Name> Detail Report"
> Even though the CountRows value = 0, which I checked in a test textbox, it
> still never displays "Detail Report" - it just comes up blank...any idea
> what the problem is? thanks
>|||That worked like a charm, thank you.
"Lev Semenets [MSFT]" <levs@.microsoft.com> wrote in message
news:eo1atc8gEHA.1656@.TK2MSFTNGP09.phx.gbl...
> If Fields collection is used in NoRows situation whole expression
evaluates
> to null (preview gives warning)
> The workaround is:
> Create textbox and set its value to
> =Fields!Client_Name.Value
> and make it hidden
> When refer to that textbox instead of field:
> =iif(CountRows() = 0, "Detailed Report", ReportItems!<textboxname>.Value &
"
> Detailed Report")
> --
> This posting is provided "AS IS" with no warranties, and confers no
rights.
> "RS Developer" <idroppededabomb@.hotmail.com> wrote in message
> news:%238g1U25gEHA.1652@.TK2MSFTNGP09.phx.gbl...
> > Hello,
> >
> > I'm having a problem with the iif statement. Seems that the conditional
> > never evaluates to true,
> >
> > =iif(CountRows() = 0, "Detailed Report", Fields!Client_Name.value & "
> > Detailed Report")
> >
> > Basically I'm checking if the recordcount is 0, if so - display
"Detailed
> > Report", if not - then display "<Client Name> Detail Report"
> >
> > Even though the CountRows value = 0, which I checked in a test textbox,
it
> > still never displays "Detail Report" - it just comes up blank...any idea
> > what the problem is? thanks
> >
> >
>
I'm having a problem with the iif statement. Seems that the conditional
never evaluates to true,
=iif(CountRows() = 0, "Detailed Report", Fields!Client_Name.value & "
Detailed Report")
Basically I'm checking if the recordcount is 0, if so - display "Detailed
Report", if not - then display "<Client Name> Detail Report"
Even though the CountRows value = 0, which I checked in a test textbox, it
still never displays "Detail Report" - it just comes up blank...any idea
what the problem is? thanksIf Fields collection is used in NoRows situation whole expression evaluates
to null (preview gives warning)
The workaround is:
Create textbox and set its value to
=Fields!Client_Name.Value
and make it hidden
When refer to that textbox instead of field:
=iif(CountRows() = 0, "Detailed Report", ReportItems!<textboxname>.Value & "
Detailed Report")
--
This posting is provided "AS IS" with no warranties, and confers no rights.
"RS Developer" <idroppededabomb@.hotmail.com> wrote in message
news:%238g1U25gEHA.1652@.TK2MSFTNGP09.phx.gbl...
> Hello,
> I'm having a problem with the iif statement. Seems that the conditional
> never evaluates to true,
> =iif(CountRows() = 0, "Detailed Report", Fields!Client_Name.value & "
> Detailed Report")
> Basically I'm checking if the recordcount is 0, if so - display "Detailed
> Report", if not - then display "<Client Name> Detail Report"
> Even though the CountRows value = 0, which I checked in a test textbox, it
> still never displays "Detail Report" - it just comes up blank...any idea
> what the problem is? thanks
>|||That worked like a charm, thank you.
"Lev Semenets [MSFT]" <levs@.microsoft.com> wrote in message
news:eo1atc8gEHA.1656@.TK2MSFTNGP09.phx.gbl...
> If Fields collection is used in NoRows situation whole expression
evaluates
> to null (preview gives warning)
> The workaround is:
> Create textbox and set its value to
> =Fields!Client_Name.Value
> and make it hidden
> When refer to that textbox instead of field:
> =iif(CountRows() = 0, "Detailed Report", ReportItems!<textboxname>.Value &
"
> Detailed Report")
> --
> This posting is provided "AS IS" with no warranties, and confers no
rights.
> "RS Developer" <idroppededabomb@.hotmail.com> wrote in message
> news:%238g1U25gEHA.1652@.TK2MSFTNGP09.phx.gbl...
> > Hello,
> >
> > I'm having a problem with the iif statement. Seems that the conditional
> > never evaluates to true,
> >
> > =iif(CountRows() = 0, "Detailed Report", Fields!Client_Name.value & "
> > Detailed Report")
> >
> > Basically I'm checking if the recordcount is 0, if so - display
"Detailed
> > Report", if not - then display "<Client Name> Detail Report"
> >
> > Even though the CountRows value = 0, which I checked in a test textbox,
it
> > still never displays "Detail Report" - it just comes up blank...any idea
> > what the problem is? thanks
> >
> >
>
Subscribe to:
Posts (Atom)