Viewing 15 posts - 271 through 285 (of 321 total)
How do u relate master and detail table. What is the parameter other than session id?
December 31, 2007 at 12:15 am
Use datename function
For Example if you want to get current month
select datename(mm,getdate())
December 20, 2007 at 1:50 am
Refer Following Link
http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=285649&SiteID=1
December 19, 2007 at 10:09 pm
Refer BOL for Log Shipping and Clustering
December 19, 2007 at 10:05 pm
Following are the DBA Role:
Daily Tasks
The following tasks should be completed on a daily basis:
Check to make sure the SQL Server is still online and that you still have connectivity.
Check...
December 19, 2007 at 9:36 pm
It is problem with set. The subquery returing more than on value. While updating in stored procedure add one more conditional check so that your update statement not...
December 17, 2007 at 5:38 am
Right click on the job and do a Generate SQL Script. CLick the Preview button and look at the line for:
--Add the job
and take a look at the variable @description....
December 17, 2007 at 5:30 am
alter table your table name alter column dd varchar(10)
update your table name set dd= convert(char(10),getdate(),102)
December 13, 2007 at 3:27 am
From Eneterprise Manager you can alter the table column as identity.
December 13, 2007 at 2:12 am
What is the error you are getting?
December 13, 2007 at 12:16 am
INSERT INTO Table1 (CustID, CustName) SELECT DISTINCT CustID, CustName FROM ##TThird T1 WHERE NOT EXISTS(SELECT top 1 CustID FROM ##TThird T2 WHERE T1.custid=T2.custid)
December 12, 2007 at 3:25 am
Shortcut for Display Estimated Execution Plan : CTRL + L
Shortcut for Include Actual Execution Plan : CTRL + M
December 12, 2007 at 12:07 am
do u want to have current date minus 6hrs data?
December 11, 2007 at 11:50 pm
If you have index on myStartdate then between is faster.
December 11, 2007 at 11:44 pm
Viewing 15 posts - 271 through 285 (of 321 total)