Viewing 15 posts - 166 through 180 (of 286 total)
Whats the significance of the data format, if you could format the same while showing in the front end using convert method?
June 3, 2011 at 1:55 am
As magoo says, please declare a variable and assign the values. It just works for me.
June 2, 2011 at 11:10 pm
Please Try this....
Declare @str varchar(10)
Set @str = '22/12/2010'
Select IsDate(substring(@str,4,2) + '/' + substring(@str,1,2) + '/' + substring(@str,7,10) )
June 2, 2011 at 10:37 pm
The below is the one am using at real time:
select text
query_plan
, requested_memory_kb
, granted_memory_kb
, used_memory_kb ,sql_handle
from sys.dm_exec_query_memory_grants MG
CROSS APPLY sys.dm_exec_sql_text(sql_handle)
CROSS APPLY...
June 2, 2011 at 4:54 am
SELECT * FROM [Table]
Where
id=1 and value='y'
What about this?
May 27, 2011 at 2:43 am
Refer the below link for the same and vote for it....
Also there is a solution, try with if it suits your req...
May 27, 2011 at 12:40 am
Are you running the query from same server/machine?
May 26, 2011 at 10:45 pm
Hey, first let us know the logic of generating the end date.
May 26, 2011 at 10:43 pm
ohhhh....Can you try just close your SSMS window and check it is working?
May 26, 2011 at 6:38 am
If you are okei to have a incremental integer value, please go ahead with identity set on the column.
May 26, 2011 at 6:33 am
Not many organizations support picassa...Sorry...
May 26, 2011 at 6:31 am
Just wanted to know the recovery model of your database.
May 26, 2011 at 6:09 am
you write logic to append the same with name. Thats the best way.
However, wonder why did you keep your primary key on this instead you can have only the integer...
May 26, 2011 at 6:08 am
Try registering a DLL by running the given command in run window - [regsvr32 "%commonprogramfiles%\microsoft Shared\MSEnv\TextMgrP.dll"].
May 26, 2011 at 5:51 am
Viewing 15 posts - 166 through 180 (of 286 total)