Viewing 15 posts - 151 through 165 (of 242 total)
Karl_Chand (7/14/2008)
Alt+F1 acts a little different to sp_help. sp_help list specifics for an object while Alt+F1 list all objects in a selected database.
Did you really try this?
Just select a table...
July 14, 2008 at 11:28 pm
The best way to avoid SQL Injection is use of Stored Procedures.
July 14, 2008 at 6:49 am
For SSIS go through the site http://www.sqlis.com
July 14, 2008 at 6:17 am
Hi Elsa,
You can use Dataset in Header/Footer but you cant view all the details.
You can see only SUM, FIRST, LAST, COUNT etc.
July 14, 2008 at 5:58 am
--1.
SELECT SERVERPROPERTY('InstanceName')
--2
sp_helpserver
--3
select @@SERVERNAME
--4
SELECT * FROM SYS.SYSSERVERS
--5
SELECT * FROM SYS.SERVERS
July 14, 2008 at 5:04 am
And if you required Running Number Total then you can use:
=RunningValue(Fields!FieldName.Value,SUM,Nothing)
July 11, 2008 at 7:52 am
Instead of Function you could use following expression in your report item:
=Sum(Fields!FieldName.Value, "DataSetName")
July 11, 2008 at 7:49 am
Hi,
you could create parameters for PcDiff Function and paas the values of fields in PcDiff.
However you can't access the Field values directly by using Fields!FieldName.Value
July 11, 2008 at 7:38 am
Hi,
You can multiply the Data Values with some fixed number so that scale will be increased during run time.
However its not a good approach but will serve the purpose.
You can...
July 11, 2008 at 7:34 am
I am confused about the variable @Condition.
Is it a parameter or variable?
July 11, 2008 at 6:52 am
pswathivineela (7/11/2008)
Hi..WHERE
logondate >= convert(datetime,(convert(varchar,Datepart(yyyy,DATEADD(mm,-3,'19/06/2008'))) + '-' + convert(varchar,Datepart(mm,DATEADD(mm,-3,'19/06/2008'))) + '-' + convert(varchar,Datepart(mm,DATEADD(mm,-3,'19/06/2008')))),3)
and logondate <= ('19/06/2008')
You can use DATEFORMAT to change the format of date.
The following example uses different date...
July 11, 2008 at 6:49 am
MarkThornton (7/11/2008)
set @SqlFilter = @SqlFilter + '''' + + dbo.fnDoubleQuotes(@MatchFieldValue)
I think this expression works like this:
set @SqlFilter = @SqlFilter + '''' + '' + dbo.fnDoubleQuotes(@MatchFieldValue)
It means if there...
July 11, 2008 at 6:36 am
Viewing 15 posts - 151 through 165 (of 242 total)