Viewing 15 posts - 1 through 15 (of 330 total)
I am able to do that before posting here,i failed so i came here to have some help.
July 27, 2012 at 3:31 am
Hi,
I tried Installing installer but installer too not getting installed.
What is the best way to install 2k8 Expression edidtion on Windows 7
Any links where i can download the software...
July 26, 2012 at 11:49 pm
capn.hector (7/20/2012)
July 21, 2012 at 12:30 am
Koen Verbeeck (1/31/2012)
Using SSMS, in which version of Excel do you copy paste the results?
ps:...
January 31, 2012 at 5:18 am
Hi,
Thanks for the replay
This is the file i am having
1996
1997
1998
1999
2000
2001
2002
2003
USE AdventureWorks
GO
Create Procedure Sample_ee (@hiredate Smallint,@Country Varchar(50) =null)
as
Begin
Select ee.EmployeeID,ee.NationalIDNumber,ee.BirthDate,ee.HireDate,
pa.AddressLine1,ps.Name,pc.Name from HumanResources.Employee as ee
Join HumanResources.EmployeeAddress as ea...
August 25, 2011 at 1:46 am
Rob Schripsema (5/26/2011)
And delete the duplicates like this:
;with IDList as
(select uniqueid,
ROW_NUMBER()
over (partition by userid, eventid order by intrested desc, uniqueid) as rn
from tableduplicate)
delete from...
May 26, 2011 at 3:06 pm
Have a look on this,
use master
Select * from sys.sysobjects where xtype='u' order by id
Go
declare @Name varchar(100)
Select @Name=Object_Name(1131151075)
exec ('Select * from '+@Name)
-- Select * from spt_values
Go
May 11, 2011 at 11:30 am
First Why you need two NULL's
Why there only one column in table 2
What is the excat requirement?
What you are trying to achive from these.
Have a clear idea of what...
May 6, 2011 at 7:00 am
Phil Parkin (5/4/2011)
parthi-1705 (5/4/2011)
Hi is this what you needed--
Hmm, I don't agree - drew.allen's post describes what is needed IMO.
Im Humm..
What is wrong with the above code i have...
May 4, 2011 at 4:29 am
Hi is this what you needed
declare @Temp table(MonthID int, Month_Execution varchar(25) ,UpdatetimeStamp date)
insert @Temp values
(201004, 'April','4/30/2010'),
(201005, 'June', '6/08/2010'),
(201006, 'June', '6/25/2010'),
(201007, 'July', '7/30/2010'),
(201008, 'Aug', '8/29/2010'),
(201009, 'Sep', '9/10/2010'),
(201010, 'Oct', '10/31/2010'),
(201011,...
May 4, 2011 at 4:16 am
Thanks for that point.I am wondering i missed that line.:-D 😀 .I just have glance on Deterministic and Nondeterministic Functions there i suddenly found that @@Max_Connections as NonDeterministic Functions and...
May 3, 2011 at 7:51 am
If so then we can change the default language also which is @@LANGUAGE ,if we run this it will return as us_english or what ever it has been configured,if so...
May 3, 2011 at 7:32 am
usharani.t (5/3/2011)
am not able to changa stored procedure ya i want to write code in rdlc expression only
Can you post Sp?
May 3, 2011 at 5:56 am
Are you looking like this
declare @month table(ScheduleDate date,ModaltyID int)
insert into @month
select '01/01/2011',1 union all
select '01/15/2011',1 union all
select '01/28/2011',1 union all
select '02/10/2011',6 union all
select '03/15/2011',7 union all
select '03/28/2011',5 union all
select...
May 3, 2011 at 5:38 am
You can also use system table to get this
DECLARE @StartYear INT
,@EndYear INT;
SET @StartYear = 2010
SET @EndYear...
April 28, 2011 at 8:11 am
Viewing 15 posts - 1 through 15 (of 330 total)