Viewing 15 posts - 586 through 600 (of 961 total)
deepak.a (8/9/2011)
Jayanth_Kurup (8/9/2011)
in SSMS you can directly connect to the target server
in the Query window i need to run sql script not by connecting another server in SSMS. I...
August 9, 2011 at 1:20 pm
Freeing disk space could means many things :-
e,g simply backing up a db will free space , so will shrink db
you could even move a partition out, or delete unwanted...
August 9, 2011 at 3:32 am
in SSMS you can directly connect to the target server , you could use Sqlcmd as well.
August 9, 2011 at 3:18 am
Is there is difference between shutting down from the MMC vs simply running the shutdown command in SSMS ?
August 9, 2011 at 3:16 am
select SPECIFIC_NAME ,LAST_ALTERED from information_schema.routines
where SPECIFIC_NAME = procname
August 9, 2011 at 3:12 am
When you created the user what did you specify as the default schema
e.g
CREATE USER [ABCD] FOR LOGIN [ABCD] WITH DEFAULT_SCHEMA=[notdbo]
August 9, 2011 at 3:05 am
While the are used synonymously there is the basic difference Suresh has just pointed out.
Usually Locking is the cause of blocking. Ie. One process is locking certain rows with exclusive...
August 9, 2011 at 3:01 am
with cte as (
select ROW_NUMBER () Over (partition by (convert(varchar(256),eventtime ,103)) , eventid order by (convert(varchar(256),eventtime ,103) )) as rowid ,
convert(varchar(256),eventtime ,103) as dates , eventid from...
August 9, 2011 at 2:54 am
After reading your post I am still not sure where your getting the data to update the columns other than column 10 in the table.
But to summarize here's what i...
August 9, 2011 at 1:52 am
DBCompare is also a good tool. However it has trouble with collations.
August 8, 2011 at 2:05 am
The task that I want to accomplish is summarised below:
FOR ANY CYCLE
FIND RECORDS
WHERE EVENTNO = -11 AND 1425
WHERE EVENTDUEDATE ARE NOT THE SAME
I am thinking this should work for you
Select...
August 8, 2011 at 1:57 am
Viewing 15 posts - 586 through 600 (of 961 total)