Viewing 15 posts - 1 through 15 (of 38 total)
Any tools available for this ?
August 7, 2014 at 10:27 pm
hi
to get loigin user
DECLARE @UserLogon Char(128)
Set @UserLogon = SUSER_SNAME()
select @UserLogon
September 25, 2013 at 6:41 am
hi, check this query..
; with
RECORD_SET1(MIN_VALUE, MIN_TSTAMP)AS
(SELECT min(VALUE), min(T_STAMP) from @t
WHERE VALUE = (SELECT min(VALUE) FROM @t)),
RECORD_SET2(MAX_VALUE, MAX_TSTAMP)AS
(SELECT min(VALUE), min(T_STAMP) from @t
WHERE VALUE = (SELECT max(VALUE) FROM @t))
SELECT...
September 25, 2013 at 1:03 am
hi ,
pls check this query
select cardno,min(datetime1),max(datetime1),action
from view1
group by cardno,datetime1,action
September 24, 2013 at 11:10 pm
please add GROUP BY in your query
ISNULL(SUM(Ac_Billbook.CostsNet), 0)
September 24, 2013 at 6:40 am
if we use desktop application and web application for ticket booking,
how the database will update:
...
May 3, 2013 at 5:40 am
no im just a developer. but im trying to be a DBA
February 14, 2013 at 9:50 pm
actually , there are 5 logins including 'sa' login. none of them have the privilege to create database or change privilege except 'sa' login.
but 'sa' login is disabled.
when i...
February 14, 2013 at 11:11 am
actually the user (with admin privileges) is already removed from domain and machine.
the only user having sysadmin privilege is 'sa' .
i cannot find any way to add new sysadmin...
February 14, 2013 at 3:18 am
query to check number of processor core equals to number of tempdb files?
January 17, 2013 at 4:56 am
Viewing 15 posts - 1 through 15 (of 38 total)