Searching In Title And Description

Apr 29, 2007

hey guys, so i have my website, everything is ok, until i have to put in a title field, along side my description. so far i have this code which searches in the description, how can i make it so i can search in the title as well

SelectCommand="SELECT [Stock_ID], [cat_id], [description], [size],

[selling_price], [qty], [picture1] FROM [tbl_stock]

WHERE ([description] LIKE '%' + @description + '%')">

 Any help would be great

 Cheers

Jez

View 2 Replies


ADVERTISEMENT

If @Title IS NULL Not Working

Jul 3, 2006

I'm building a stored procedure to edit a row in my database but first I'm wanting to check for null values in the parameters and set them to their respective value in the row I'm attempting to edit.

Here's my code:

Code:

CREATE PROCEDURE dbo.spModifyProject
(
@ProjectID int,
@Title nvarchar(50),
@Description nvarchar(50),
@DueDate smalldatetime,
@ProjectLead nvarchar(50),
@Completed bit
)

AS

IF @Title IS Null Then
SET @Title = (SELECT Title FROM Projects WHERE [ID] = @ProjectID)
END IF



I get syntax errors in two places. The first is near Null and the second is near END. Any help you can give is appreciated.

View 2 Replies View Related

Select Column Value As Title

Feb 13, 2005

I have a table that is a very general layout so I can expand upon values later in the future easily. Basically it looks like this:

Code:

ID PlayerID Ability Score
1 1 STR 18
2 1 DEX 17
3 1 CON 16



What I'm trying to do is create a stored procedure where I pass in a PlayerID and it will return a result set of

Code:

STR DEX CON
18 17 16



It doesn't appear that there's a way in SQL Server 2000 to SELECT a column AS a variable. I suppose I could go about creating a temporary table, but seems like an odd work around to get it to work. Any suggestions? Or am I just missing something obvious?

View 3 Replies View Related

Need To Add Parameter To Report Title

Nov 16, 2006

Hello,

I am asking this question here, because it appears that I don't get as fast a response in reporting services as I do on this forum.

I am trying to add an extra parameter in a report title called SummaryBy.Value

Here is my current code:

="BY " & UCase(Parameters!SummaryBy.Value & IIF(Parameters!SummaryBy2.Value<>"", " / " & Parameters!SummaryBy3.Value,""))


If I add the extra parameter I get an error because of the IIf. How do I get around this to display all three parameters?

Please let me leave this post here also. I need to get an answer asap.

TIA and have a great day!



Kurt

View 6 Replies View Related

If @Title IS NULL Not Working

Jul 3, 2006

I'm building a stored procedure to edit a row in
my database but first I'm wanting to check for null values in the
parameters and set them to their respective value in the row I'm
attempting to edit.



Here's my code:

Code: CREATE PROCEDURE dbo.spModifyProject
(
@ProjectID int,
@Title nvarchar(50),
@Description nvarchar(50),
@DueDate smalldatetime,
@ProjectLead nvarchar(50),
@Completed bit
)

AS

IF @Title IS Null Then
SET @Title = (SELECT Title FROM Projects WHERE [ID] = @ProjectID)
END IF



I get syntax errors in two places. The first is near Null and the second is near END. Any help you can give is appreciated.

View 3 Replies View Related

Dynamic RDL Group Title

Jan 10, 2007

I'm new to these forums. If this is not the right place to post this question, please let me know where I should ask. :)

Anyway, I have a report that is grouped something like this:



Team
Location
Score

TEAM 1
#Loc#
#Total#


Home
10


Away
14


Away
8


NULL
0


NULL
0


Home
14

TEAM 2
#Loc#
#Total#


Home
10


Away
14


Home
19


NULL
0


Home
14

TEAM 3
#Loc#
#Total#


Away
7


Away
12

For each team grouping, the header columns needs to perform an action on the grouped records to determine the text.

The #Total# header is easy -- here I want a total of the points ( =Sum(Fields!Points.Value) ). No problem.

The #Loc# header is the problem. What I want to do is to count the number of "Home" values in the group (so Team 1 location reads "Home (2 of 6)", and Team 2 location reads "Home (3 of 5)"). If there are no "Home" values, I want to use the "Away" value (so Team 3 location reads "Away (2 of 2)").

Can someone tell me how I can create a custom code function that will allow me to iterate through the values of the grouped records from the group header textbox? I assume I need to be able to create a custom aggregate function of some kind, but I don't quite know where to begin.

Thanks for your help.

Joe

View 1 Replies View Related

A Query Where Title Includes 'Keyword'

Apr 30, 2008

i am having a problem querying a field in a database to show all records where the title has a keyword within the title.
 Select * FROM tblCourse
WHERE title =@Search
But not the full title just a keyword within the field?
 Thanks

View 1 Replies View Related

Create A Report Showing Title First And Last Name

Sep 9, 2015

I need to create a report showing the title the first and last name of all sales representatives-This is what I have so far but am having difficulty retrieving ONLY the "Sales Representatives" Titles.

Select Firstname, Lastname, Title
From Employees
Where ???

View 6 Replies View Related

Report Title Above Parameters (Urgent)

Sep 21, 2007

Hi All,

I have created a report in SQL Server Business Intelligence Development Studio 2005. I need to add a report title above the parameters area. Is that possible?. please help me





The output should be like



_____________________________________________________________________
Report Title



_____________________________________________________________________



Report Parameters Section View Report button





_____________________________________________________________________





Report Body part.









_____________________________________________________________________

View 1 Replies View Related

How Do I Change The Report Title Via An Expression?

Mar 3, 2008

How do I change the report title via an expression? I have a parameter that can contain 1 of 3 values and want to change my Report Title accordingly. Can I nest the IIF statements somehow or how can I accomplish this?

View 4 Replies View Related

Multi-line Chart Title

Apr 23, 2007

Good day,



Is there anyway that I can have a multi-line chart title? I have even tried placing a text box over the title part of the chart that is multi-line, although this appears to work once the report is deplyed and viewed in a web browser the text box appears below the chart and the chart then has no title.



Please can you help?

View 2 Replies View Related

Title For Matrix Row &&amp; Column Groups.

May 8, 2007

Is there any way to give Title to matrix row and column groups?



I know If i have only one row i can give title in the textbox provided at the top of the Rows group area. But i have more than one row and group and more than one column group. i want to give title to all of them.

Without the title the report looks incomplete

Is there any solution for this problem?



Thanks

Rohit

View 1 Replies View Related

Report Title Above Parameters (Urgent)

Sep 21, 2007



Hi All,
I have created a report in SQL Server Business Intelligence Development Studio 2005. I need to add a report title above the parameters area. Is that possible?. please help me


The output should be like

______________________________________________________________________
Report Title

______________________________________________________________________

Report Parameters Section View Report button


_____________________________________________________________________


Report Body part.




_____________________________________________________________________

View 1 Replies View Related

Change Chart Title At Run-time

May 20, 2008

Is it possible to change the title of a chart at run-time?

View 3 Replies View Related

Repeat Report Title On EveryPage

Nov 15, 2005

Dear Anyone,

View 7 Replies View Related

Problem With Size Of Text Of Title Of Column.

Jan 10, 2007

Hello :

In a title of a column of a table, I put a too long text, with sorting, but when I spread (display) the report has a problem on text of the title of the column there.

The probleme settles (arises) when I activate the sorting to post (show) the image of sorting.

How to fit the size of the cell to the text?

 

Thenk's.

View 2 Replies View Related

Questions On Matrix (Subtotal, Drillup And Title)

Nov 9, 2007

Hi,

This maybe a very simple question but somehow I cannot find the way to do it.

1. How to delete Subtotal in Matrix by using Report Designer (Visual Studio).
It looks simple, but after I click on the Total and right click - delete. Somehow only the text "Total" being deleted and not the whole row. I still can see the grey cell in my matrix table

2. How to create link from the value in Total in Matrix
We can add the link in the Data via navigation and jump to another report by passing the parameter, but the Total value will follow whatever we have set in the Data. Which means that it will passing the parameter as well. How to enable the link via the Total value and remove all the previous filter and jump into my other report without any filter value ?

3. How to create drill up function in matrix ?
For example I have 2 Reports, 1st report is Region (AP, EMEA, US), 2nd Report is Country
When I click on 1st report and click on AP, it will open up another report and show country like Hongkong, Indonesia, Singapore
Now, I want to click on AP in 2nd report and going back to 1st report by showing all AP, EMEA, US.
When I click on AP in 2nd report, I am going to pass the parameter of Region there and still I want to show AP, EMEA, and US.

4. How to show the Title in Matrix ?
I cannot find a way to show the Field name as the title in the Matrix for column grouping. Anyone can help me ?

Millionz thanks if you can help to answer this.

Cheers
Tanipar



View 1 Replies View Related

How To Persist Title Of 'modal Dialog' During Postback

Oct 18, 2007

Hi,

Please give me some idea to persist or set title of modal dialog during postback.

The title of modal dialog is going lost whenever postback happen on modal dialog.

document.title is not working after postback.


Thanks,
Sandeep, India

View 1 Replies View Related

Showing MultiValue Parameters Under Report Title

Nov 16, 2007

Hi all,

I want to show the above. Can someone elighten me how I can loop thru to concatanate the values?

Regards,
Farouk Yew

View 1 Replies View Related

T-SQL (SS2K8) :: How To Add Manual Column Based On GroupBy For Title

Jan 15, 2015

I have a query to get data group by High, Medium and Low so only three rows will be returned.

select
sum(case .... ) then 1 else 0 end) as [Column1],
sum(case .... ) then 1 else 0 end) as [Column2],
sum(case .... ) then 1 else 0 end) as [Column3]
from sometable
Group by High, Medium, Low

I want to manually add High, Medium and Low to each row's first column. the final result should look like:

Column1 Column2 Column3
High 123 123 123
Medium 123 123 123
Low 123 123 123

How can I do it?

View 2 Replies View Related

SQL Server 2014 :: How To Update The Year Employee Has Been In Specific Title

Apr 1, 2014

--===== If the test table already exists, drop it

IF OBJECT_ID('TempDB..#mytable','U') IS NOT NULL
DROP TABLE #mytable

--===== Create the test table with

CREATE TABLE #mytable
(
EMP_ID INT,
Title varchar(50),
DateValue DATETIME,
TITLE_YEAR INT,

[code]....

I am new to this level of coding in SQL SERVER 2012, but I am looking to update the TITLE_YEAR field in the temp table with the Year the employee is in that title. For example for employee 11127 the data should look like this:

EMP_IDTitle DateValue TITLE_YEAR
3 Senior Consultant 2009-01-01 00:00:00.0001
3 Director 2010-01-01 00:00:00.0001
3 Director 2011-01-01 00:00:00.0002
3 Director 2012-01-01 00:00:00.0003
3 Director 2013-01-01 00:00:00.0004
3 Senior Director 2014-01-01 00:00:00.0001

View 6 Replies View Related

Reporting Services :: SSRS 2012 / Put A Title For A Radial Gauge?

Nov 26, 2013

I need to put a title for a radial gauge. I've tried to add a label, but it remains in the panel area.

Is it possible to add a title by using a gauge property without creating a text box outside this object?

View 7 Replies View Related

Reporting Services :: Chart Title Hyperlink Does Not Work After Export

Jul 29, 2015

On SSRS 2008 R2 I've set the Action of a pie chart title to Go to URL. When I run the report in the browser the title can be clicked and all is well.

However, when I export/render the report to pdf, the hyperlink disappears. I've tested with a small URL, but that fails as well. I've also tried the same URL in the Action of a text box and that works fine. But, I don't want a text box on top of the chart (which comes with its own positioning issues) and use the more elegant approach of having the link in the title instead.

I'm assuming this is a SSRS limitation? Re-writing the url or making it shorter does not have any effect.

View 4 Replies View Related

Reporting Services :: SSRS Subreport Is Not Opening When Hiding Title In A Column?

May 25, 2015

I have a SSRS report in which we have a subreport i am trying to hide the link in excel after exporting from report documents, in report my logic is working fine but when we are deploying in SharePoint application then it is not working. Report is not opening.

View 2 Replies View Related

New Title In Thread : Error/bug In ASMX ? - Parameters And Toolbar Property In DevInfo

Apr 20, 2007

Hi all,



I am trying to build a reportviewer so that I could use reporting services (due to company's security policy).



I am getting a VERY weird error here.



Before I get on ahead, here is the scenario.

I had created a rdl that will give a certain report based on two parameters. At the moment, I didn't assign the parameters to any default values since i don't want the report to start running. These two parameters are run based on stored procedures to get the starting date and an ending date.



I had tried to view this report on Report Manager and it works.



I had set the parameters this way. NOTE: ReportingServer is the disgused name of the reportserver I am using for privacy purposes




Code Snippet

Dim rs As New ReportingServer.ReportingService

rs.Credentials = System.Net.CredentialCache.DefaultCredentials

'Render arguments

Dim results() As Byte

Dim format As String = "HTML4.0"

Dim historyID As String = Nothing

'PDF Rendering extensions don't have any useful DeviceInfo settings

'the toolbar shown below only affects HTML rendering

Dim devInfo As String = "<DeviceInfo><HTMLFragment>True</HTMLFragment><JavaScript>True</JavaScript><Toolbar>True</Toolbar><Parameters>True</Parameters></DeviceInfo>"

Dim credentials() As ReportingServer.DataSourceCredentials = New ReportingServer.DataSourceCredentials() {}

Dim showHideToggle As String = ""

Dim encoding As String = ""

Dim mimeType As String = ""

Dim warnings() As ReportingServer.Warning = New ReportingServer.Warning(0) {}

Dim reportHistoryParameters() As ReportingServer.ParameterValue = New ReportingServer.ParameterValue() {}

Dim streamIDs() As String = Nothing

Dim sh As ReportingServer.SessionHeader = New ReportingServer.SessionHeader

rs.SessionHeaderValue = sh





But when I started building this reportviewer.aspx, it gives me this error on the following line:-






Code Snippet

results = rs.Render(ReportPath, format, historyID, devInfo, Parameters, credentials, _

showHideToggle, encoding, mimeType, reportHistoryParameters, warnings, streamIDs)









with the error



{"This report requires a default or user-defined value for the report parameter 'start_date'. To run or subscribe to this report, you must provide a parameter value. --> This report requires a default or user-defined value for the report parameter 'start_date'. To run or subscribe to this report, you must provide a parameter value. --> This report requires a default or user-defined value for the report parameter 'start_date'. To run or subscribe to this report, you must provide a parameter value."}



this is occuring on the line where it needs to render the report.



As simple as it is, i tried the following:-

NOTE: some variables has been changed to protect some identity.






Code Snippet

Dim ReportRenderer As New RenderSQLReports

Dim Parameters As int.rrd.sqlreporting_test.ParameterValue() = Nothing



ReportRenderer.RenderReport(Parameters, "/Folder/reportname", "pdffilename.pdf")









What I don't get is that i made sure that it doesn't have any default values.



So I went into this scenario and tried teh following:-






Code Snippet

Dim ReportRenderer As New RenderSQLReports

Dim Parameters() As Reportingservices.ParameterValue = New Reportingservices.ParameterValue(1) {}


Parameters(0) = New Reportingservices.ParameterValue

Parameters(0).Label = "start_date"

Parameters(0).Name = "start_date"

Parameters(0).Value = "10/1/1999 12:00:00 AM"

Parameters(1) = New Reportingservices.ParameterValue

Parameters(1).Label = "end_date"

Parameters(1).Name = "end_date"

Parameters(1).Value = "11/1/1999 12:00:00 AM"



ReportRenderer.RenderReport(Parameters, "/Folder/reportname", "pdffilename.pdf")







And this is what happens. It blows up on this line again. with this error.


Code Snippet

results = rs.Render(ReportPath, format, historyID, devInfo, Parameters, credentials, _

showHideToggle, encoding, mimeType, reportHistoryParameters, warnings, streamIDs)

With the errors



{"Default value or value provided for the report parameter 'start_date' is not a valid value. --> Default value or value provided for the report parameter 'start_date' is not a valid value. --> Default value or value provided for the report parameter 'start_date' is not a valid value."}



This is probably occuring because the date I had provided is not found in the list of dates. I really don't want to default a date at the moment, to allow the user to select a date.



So I finally gave it a date...... a valid date.






Code Snippet

Dim ReportRenderer As New RenderSQLReports

Dim Parameters() As Reportingservices.ParameterValue = New Reportingservices.ParameterValue(1) {}


Parameters(0) = New Reportingservices.ParameterValue

Parameters(0).Label = "start_date"

Parameters(0).Name = "start_date"

Parameters(0).Value = "10/1/2004 12:00:00 AM"

Parameters(1) = New Reportingservices.ParameterValue

Parameters(1).Label = "end_date"

Parameters(1).Name = "end_date"

Parameters(1).Value = "11/1/2004 12:00:00 AM"



ReportRenderer.RenderReport(Parameters, "/Folder/reportname", "pdffilename.pdf")



LO and behold, it works BUT . now i get this error in the aspx code.

Runtime error has occured.


Microsoft JScript runtime error: 'Report' is undefined

on this weird line:- (that was generated automatically)



</script><script language="javascript" type="text/javascript" src="?rs:Command=Get&amp;rc:GetImage=8.00.1038.00Report.js">

</script><script language="javascript" type="text/javascript">

<!--

function OnLoadReport()

{

var pageHits = null;

var rep = new Report(1, 16, pageHits, false, docMapIds); <-where error is occuring.

if (parent != self) parent.OnLoadReport(rep);

}

//-->

</script>





It did show the report, but I don't understand why it is still getting an error here. Moreover, I didn't even get the HTMLViewer too even when I had assigned the devinfo....



Really need some help here, as this is quite urgent.... I am at a loss at this, and maybe that there is an option that I am not seeing or something I am missing. please help .

Bernard-So close yet so far, How cruel are the software bugs-

View 4 Replies View Related

Integration Services :: Way Of Creating Shared Folder In Order To Perform Operation From Title

Apr 14, 2015

having on mind that this is my Target server: what is the way of creating shared folder in order to perform operation from the title (and, of course, to continue with installation of packages etc...)? SQL SERVER 2008 R2

View 26 Replies View Related

Reporting Services :: Report Builder Bubble Chart - Axis Title Disappears

Aug 20, 2015

I have a bubble chart created with Report Builder 3.0. I have the Y-axis series is along the left side of the chart. When all X values are positive, everything displays normally. However, if any X-axis values are negative, the whole graph shifts slightly leftward and the Y-axis title is no longer visible. It seems to be overwritten by the shifted graph or simply pushed into nondisplay area.

Is there something I can do to make the chart stay put?

View 3 Replies View Related

Reporting Services :: How To Change Title Of Chart In Performance Point Dashboard Designer

Jun 25, 2015

We have created a chart in SharePoint 2013 with performance point dashboard designer. We want to change Title of chart. For more  information please check attached image.

View 2 Replies View Related

Reporting Services :: SSRS 2014 Report Manager - Customize Standard Title And Change Background Colors?

Jul 30, 2015

I have 3 SSRS 2014 (Dev, UAT and Prod).  I would like to change background colors of each environment and customize the title 'SQL Server Reporting Services'  to ' SSRS Development'.

I prefer to implement both, a background color change and a title change.  The reason for this is to clarify to end users which environment they are working with.

Where can I make those minimal changes in SSRS 2014.

View 2 Replies View Related

How To Get The Description ?

Jul 27, 2005

Hi,I have a SQL that is working fine:
SELECT DISTINCT T1.ATCkod FROM ATC_tot T1    JOIN ATC_tot T2 ON T2.ATCkod = T1.ATCkod and T2.Typ_lakemedel LIKE '%' + @Kod2 + '%'    JOIN ATC_tot T3 on T3.ATCkod = T1.ATCkod AND T3.Typ_lakemedel LIKE '%' + @Kod3 + '%'    WHERE T1.Typ_lakemedel = @KodNow I need to have a description together with the ATCkod, tablename ATC columnname ATCdesc. ATC_tot.ATCkod = ATC.ATCkod. I have tried Inner join without success. Any good suggestions ...?

View 1 Replies View Related

How Can I Set Description Property By T-SQL ?

Jun 6, 2007

I would like to create table by T-SQLand need to specify DescriptionBut I can't find any sample to add Description property by T-SQL  Additionally, I also would like modify Description property by T-SQL. What can I do ?????  Please help me ...... 

View 2 Replies View Related

Description Field

Sep 30, 2004

Hi

Getting an error on the following SQL. The field in question is the Description field which has * in the description. Not sure how I should have the SQL to solve this

UPDATE Taylors
SET Area=::Area::,Avail=::Avail::,Address=::Address::,Type=::Type::,Price=::Price::,Bedrooms=::Bedrooms::,HotProps=::HotProps::,Office=::Office::,Description=::Description::
WHERE RefNo =::RefNo::


Database Results Error
Description: [Microsoft][ODBC Microsoft Access Driver] Syntax error (missing operator) in query expression '* modern retirement flat * double bedroom * south lounge * fitted kitchen * good size bathroom * communal gardens * residence parking *'.
Number: -2147217900 (0x80040E14)
Source: Microsoft OLE DB Provider for ODBC Drivers

View 1 Replies View Related

Column Description

May 18, 2005

Hello, it seems I forgot how to do it,
I want to create a query to get the column description table, I mean get structure without data.
I remember it was select DESC or something like that, donno if im right!!!
 
regards

View 6 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved