Viewing 15 posts - 13,996 through 14,010 (of 14,953 total)
Having StatusID and Active in your Where clause is getting rid of any rows that would have 0 in them. You need to move those to the Join clause,...
April 28, 2008 at 10:53 am
If you really want to do that, then have the insert proc use the current season only. That's a simple select statement for that column.
But I have to ask,...
April 28, 2008 at 10:50 am
ganesh.salpure (4/28/2008)
"
If you want to avoid that, either have the front end do the paging, or create a "permanent temp table" that includes some sort of connection...
April 28, 2008 at 9:28 am
create table dbo.Numbers (
Number int identity (0, 1) primary key,
Junk bit)
go
insert into dbo.Numbers (junk)
select top 10000 0
from sys.all_objects s1
cross join sys.all_objects s2
go
alter table dbo.Numbers
drop column junk
go
select dateadd(day, number, '1/1/1900')
from dbo.Numbers
That...
April 28, 2008 at 9:13 am
If you only have a finite number of pre-defined databases, you could use an IF statement to accomplish this.
CREATE FUNCTION fnGetKur(@date datetime,@exchange varchar(5),@type tinyint,@dbname varchar(30)) RETURNS float AS
BEGIN
DECLARE...
April 28, 2008 at 8:35 am
Numbers table is great for that kind of thing, but I also keep a Dates table. Good for things where you need special data in date ranges, like holidays...
April 28, 2008 at 8:28 am
I have a similar situation. An SSIS package that, when run in the dev studio, runs just fine and takes a couple of minutes, but when run as a...
April 28, 2008 at 8:18 am
I've sometimes had to define an ODBC data source in Windows Control Pannel to force the use of a specific port. Have you tried that?
April 28, 2008 at 8:13 am
Did you try the CTE version I just posted? It returns procs that don't have parameters, just leaves those columns null.
April 28, 2008 at 8:11 am
It depends on how you want to use them.
You can have both on the same table, just so long as only one of them is clustered.
April 28, 2008 at 8:09 am
Take a look at "For XML" in Books Online. That should give you what you need.
April 28, 2008 at 8:00 am
Check the reply I just added to your other thread (where you originally asked about regexes). That should give you what you need for this query as well.
April 28, 2008 at 7:59 am
I'm not sure.
I just tried running your exact query (just copy-and-paste into Management Studio), and it ran perfectly on my server.
Try this:
;with Params (ParameterName, ParamType, Max_Length, [Precision],
[Scale], Is_Output, OID)...
April 28, 2008 at 7:57 am
SELECT empid1,name1,joindate from emp where empid2=3
union
select empid2,name2,joindate from emp where id1=3
Could be replaced with:
;with
CTE1 (EmpID, Name, JoinDate) as
(selectempid1,name1,joindate
from emp
where empid2=3
union
select empid2,name2,joindate
from emp...
April 28, 2008 at 7:34 am
Viewing 15 posts - 13,996 through 14,010 (of 14,953 total)