Viewing 15 posts - 121 through 135 (of 186 total)
demonfox (3/8/2013)
or you can have a Currency Code...
March 11, 2013 at 11:38 pm
jformosa (3/11/2013)
I had similar questions to these:
"then what is the use of inserting currency symbol?? And your link has list of symbols. How can i type symbols other than...
March 11, 2013 at 11:30 pm
demonfox (3/7/2013)
You can't .. that's how SQL Server stores it .. check it out on this link
http://msdn.microsoft.com/en-us/library/ms179882.aspx
..
I found this in your link
It is important to remember that while you...
March 8, 2013 at 12:30 am
Lynn Pettis (3/6/2013)
Does this get you started?
with TopDates as (
select top (100)
MyDates
from
dbo.MyTable
order by
MyDates desc
)
select min(MyDates) from TopDates;
That will...
March 7, 2013 at 11:14 pm
ChrisM@Work (3/7/2013)
winmansoft (3/7/2013)
ChrisM@Work (3/7/2013)
DECLARE @Parameter VARCHAR(8000)
SET @Parameter = 'seh,jyo,mhf'
SELECT *
INTO #Elements
FROM dbo.DelimitedSplit8K (@Parameter,',')
SELECT...
March 7, 2013 at 5:46 am
ChrisM@Work (3/7/2013)
DECLARE @Parameter VARCHAR(8000)
SET @Parameter = 'seh,jyo,mhf'
SELECT *
INTO #Elements
FROM dbo.DelimitedSplit8K (@Parameter,',')
SELECT m.*
FROM reminder.dbo.Reminder...
March 7, 2013 at 5:12 am
Thank you
I found that i can do this
DECLARE @Parameter VARCHAR(8000)
SET @Parameter = 'seh,jyo,mhf'
DECLARE @Elements TABLE
(
...
March 6, 2013 at 11:04 pm
Sorry for my misunderstanding..solutions suggested will work for those condition.. I have to get minimum date from top 100 max dates. Any query work for this?
March 6, 2013 at 9:50 pm
if connection 2: COMMIT TRAN is done initially (in code)
and some err in connection 1
then connection 2: cannot not be rolled back right ?
March 6, 2013 at 2:49 am
I can't change the datatype from datetime to date.So is there any method like cast or anything?
March 5, 2013 at 10:43 pm
ChrisM@Work (3/5/2013)
March 5, 2013 at 5:05 am
Bhuvnesh (3/5/2013)
See this link http://msdn.microsoft.com/en-us/library/ms176078(v=sql.105).aspx
Can use query instead of @SearchWord?? i dont think so
March 5, 2013 at 3:57 am
ChrisM@Work (3/5/2013)
March 5, 2013 at 3:50 am
Bhuvnesh (3/5/2013)
winmansoft (3/5/2013)
March 5, 2013 at 3:48 am
Viewing 15 posts - 121 through 135 (of 186 total)