Viewing 15 posts - 76 through 90 (of 242 total)
Amit Chaudhary (10/18/2008)
January 7, 2009 at 9:57 pm
Jason Shadonix (1/7/2009)
January 7, 2009 at 9:56 pm
Eric Klovning (1/7/2009)
SELECT *
FROM
INFORMATION_SCHEMA.COLUMNS
WHERE
COLUMNPROPERTY -- get columns where is_identity = 1
(
OBJECT_ID(QUOTENAME(table_schema) + '.' + QUOTENAME(table_name)) --...
January 7, 2009 at 3:03 am
MANU (1/6/2009)
January 6, 2009 at 10:28 pm
Create table table1
(
id int identity(1,1) not null,
name varchar(50)
)
i have created table as above script.
Now i want to remove identity on id column using TSQL Script .
Any idea?
January 6, 2009 at 6:39 am
Ed Wyant (5/2/2008)
Failures, success, or completions? The present database mail configuration works ...
January 6, 2009 at 3:17 am
timscronin (1/5/2009)
January 5, 2009 at 10:31 pm
sathpon (1/4/2009)
[font="Arial"][/font]
Please check any database trigger is ebable or not?
January 5, 2009 at 10:30 pm
pavankumarh2 (1/5/2009)
I am moving to work on Production support as DBA ,plz any tell me any body what are the common responsibilities of...
January 5, 2009 at 10:29 pm
Wesley Brown (1/5/2009)
I've got a weird one. It appears that I have had the SQL Agent just skip running a scheduled job task. No failure no job stuck executing...
January 5, 2009 at 10:24 pm
mahesh.vsp (1/5/2009)
Can anyone suggest few links on disaster recovery scenarios for SQL Server 2005.
Example : IF "master" database is corrupted what needs to be done.
.....
January 5, 2009 at 10:23 pm
Pete T (1/5/2009)
January 5, 2009 at 10:20 pm
PaulB (1/5/2009)
Paresh Prajapati (1/5/2009)select t1.A,t1.B,t1.C,t2.D
from table1 t1 inner join table2 t2 on (t1.A=t2.A)
You may want to test your code, unfortunatelly it doesn't work.
I think it will be better to...
January 5, 2009 at 10:14 pm
dakshinamurthy (12/10/2008)
I am new to this logshipping concept and tried to configure LogShipping for my Database, in this set up i had two servers (Sql Servers). I was not having...
January 5, 2009 at 2:22 am
anita (1/2/2009)
Thanx in advance....
can anyone help me with this problem.
I had added the linked server excel and trying to retrieve the data thru query
SELECT * FROM EXCEL...Stock$
the same process...
January 5, 2009 at 2:22 am
Viewing 15 posts - 76 through 90 (of 242 total)