Viewing 15 posts - 6,151 through 6,165 (of 9,643 total)
You need to create a data set with the expression in the dataset designer. Then you use that dataset as the source for your Search Value parameter where id...
January 23, 2009 at 2:26 pm
Check out the BOL entry for IsNumeric. "+", "-", ".", and currency symbols are all considered Numeric. Change your where clause to:
Where
Column NOT...
January 23, 2009 at 9:48 am
I think you are going to need to do custom code for this. This will work:
SELECT
CONVERT(CHAR(4), YEAR(GETDATE())) + '-' +
...
January 23, 2009 at 9:41 am
DBADave (1/23/2009)
You got it. It's also designed for UNIX/ORACLE. Not sure about SYBASE.
In my experience almost all applications like this experience performance problems. It's probably got problems...
January 23, 2009 at 9:25 am
I don't know of a way to do this, at least not how you are attempting. A work-around may be to only have 2 parameters, the Search By parameter...
January 23, 2009 at 9:23 am
Can you define how you determine which rows are rows 31-40? This will vary based on your order by.
January 23, 2009 at 9:13 am
This isn't totally related, but is this one of those applications designed to run on multiple database platforms?
January 23, 2009 at 9:11 am
K. Brian Kelley (1/23/2009)
Jack Corbett (1/23/2009)
K. Brian Kelley (1/23/2009)
January 23, 2009 at 9:10 am
K. Brian Kelley (1/23/2009)
January 23, 2009 at 8:59 am
The error is because you have Convert(Float(data)) which is missing a "," after float. Convert(Float, (Data)). It is in
this section of code:
Else Sum (CASE WHEN Transfertype = 'Termination'...
January 23, 2009 at 8:54 am
Please don't duplicate posts. Answers here
January 23, 2009 at 8:47 am
Check out this link: http://support.microsoft.com/kb/814398
January 23, 2009 at 8:45 am
Well, the first thing you need is Outlook installed on the server. Then you need to configure a mail profile on the server logged in as the SQL Service...
January 23, 2009 at 8:43 am
brainy (1/23/2009)
Try using
WAITFOR
{
DELAY 'time_to_pass'
| TIME 'time_to_execute'
| [ ( receive_statement ) | ( get_conversation_group_statement...
January 23, 2009 at 8:30 am
Are you using SQL Server Express edition or another edition of SQL Server?
If you are using a version other than express you can use the backup the command...
January 23, 2009 at 8:05 am
Viewing 15 posts - 6,151 through 6,165 (of 9,643 total)