Viewing 15 posts - 181 through 195 (of 233 total)
Hi
Always study the latest..!! Go for TS: Microsoft SQL Server 2008, Business Intelligence Development and Maintenance, since it has many new features introduced in the 2008 version.
No eligibility criteria ..I...
January 10, 2011 at 12:08 am
Gila, really a wonderful article..
Lot of effort put into that.
January 7, 2011 at 1:59 am
Also
The primary difference between both is that Exec statement is Unparameterised whereas sp_executeSql is Parameterised.
If we use sp_executeSql, the cached plan would be created only once and would be...
January 6, 2011 at 4:31 am
Hi...
sp_executesql is a system stored procedure that you can use in place of EXEC to execute your dynamic sql.
sp_executesql allows you to create parameterized queries
Try this link also
January 6, 2011 at 4:19 am
Hi..Try this
select cast(datediff(yyyy, '2006-01-01', '2008-01-01') as varchar) + 'Y : '
+ cast(datediff(mm, '2006-01-01', '2008-01-01') as varchar) + 'M : '
+ cast(datediff(dd, '2006-01-01', '2008-01-01') as varchar) + 'D'
January 5, 2011 at 2:12 am
Hi..
Pls try this link
Also
http://www.sqlservercentral.com/Forums/FindPost961135.aspx
Please reply , if these links helped you.
January 3, 2011 at 10:10 pm
Happy New Year 2011..!!
Hi..Pls have a look at this look
January 2, 2011 at 10:50 pm
Hi..Pls try this
I have this query:
select sys.tables.name,sys.data_spaces.name
from sys.tables,sys.data_spaces
where sys.tables.lob_data_space_id = sys.data_spaces.data_space_id
order by sys.tables.name
December 29, 2010 at 11:31 pm
Hi Abhijeet
Its really a useful link..Depicts almost all formats
Share more if u have anything related..It will help everybody
December 29, 2010 at 11:22 pm
December 27, 2010 at 11:31 pm
December 27, 2010 at 11:27 pm
Happy Holidays..!!
Wishing all here in SQLServerCentral a wonderful & prosperous year 2011 ahead ..!!
December 26, 2010 at 11:14 pm
Hi
Its happy to see that you're a learning geek..
I 've already passed this exam..
Its easy to pass provided you 're aware of the features of T-sql in SQL server 2008...
December 26, 2010 at 11:07 pm
Hi..Try this,
SELECT b.PatientID , b.TreatmentID , 'Overlaps ' + a.PatientID + ' ' + a.TreatmentID AS 'Overlaps'
FROM Patient a, Patient b
WHERE a.PatientID != b.PatientID and
...
December 26, 2010 at 11:02 pm
Viewing 15 posts - 181 through 195 (of 233 total)