Viewing 15 posts - 61 through 75 (of 85 total)
Thanks John.
I am not able to open Lynn Pettis post..
February 18, 2010 at 11:52 pm
Yes Michael, that is certainly there. My post gives an idea of forthcoming weekends without having any intimation of dates.
February 18, 2010 at 11:49 pm
Excellent Article !! covered almost all points for time bomb coding.
February 9, 2010 at 11:10 pm
You have made a mistake in the parameters of DateAdd function.
Second parameter is the number of minutes you need to add to the date given as the third parameter. So,...
February 7, 2010 at 11:47 pm
You can dump the results into a temp table using bulk insert like
create table #temp(names varchar(100))
BULK insert #temp from 'c:ames.txt'
select * from #temp
select a.users
from yourtable a inner join #temp...
February 7, 2010 at 11:40 pm
Update gpcb
Set Sgpa=T2.Sgpa,Cgpa=T3.Cgpa
From GradePointCalculation_Bkup gpcb
INNER JOIN #temparrearTable1 T1 T1.Registerno = gpcb.Registerno
Inner join #temparrearTable2 T2 on T1.Registerno=T2.Registerno
Inner Join #temparrearTable3 T3 on T3.Registerno=T1.REgisterno
January 4, 2010 at 2:16 am
If you have more than one object to be copied from one server to another, or if you have some updates on the structure of the objects, you can do...
January 4, 2010 at 2:10 am
you can execute sp_who2 to see the processes
December 22, 2009 at 10:34 am
I used the same logic of Conditional Split in my package to split the records based on conditions having data and nodata. I have a stored procedure which will either...
December 2, 2009 at 6:03 am
You can get all the servers list from "sqlcmd -L" or "isql -L"
you can execute these commands using xp_cmdshell..Take all the servers list into a table and then iterate one...
November 22, 2009 at 12:33 pm
I have scripted the objects this way to script the triggers for a particular list of tables.
November 2, 2009 at 6:00 am
Yes even i am confused on the post. It does not say anywhere in the entire article, what is the main purpose of Copy_only backups. It starts with the growth...
September 30, 2009 at 1:37 pm
Yes you are right. But we can do one thing change the compatibility level to 90 and then perform the operation and again change the compatibility to 80..
This problem i...
August 10, 2009 at 11:45 pm
fn_TopOrders returns the top 3 Orderid,Orderdate from the SalesOrder table. As my issue was not more based upon that i have not included the function..!!
August 7, 2009 at 11:33 am
Viewing 15 posts - 61 through 75 (of 85 total)