Viewing 15 posts - 1 through 15 (of 16 total)
I am sorry but maybe i was not clear enough in my question..
I have about 72 dept tables and each table has 50,000 + records.
I need to create a...
March 28, 2011 at 1:04 am
Thank you so much..for all of your help. i finally got it to work. i finally got what i needed.. i am new to this so everyones input helped a...
February 15, 2008 at 3:36 pm
Sugesh,
I am trying to use your way to get this done. We have to send emails every time we run the job and there is an update. I can...
February 14, 2008 at 2:50 pm
Thanks for all the replies. i will further look into output. I was also thinking of doing another job that can run right before the update and give me the...
February 13, 2008 at 3:38 pm
Hey Lucky,
Thanks for the reply, i can not do a trigger on the table because there are updates going on in the table all the time. and this is...
February 13, 2008 at 8:29 am
This worked!!.. Thank you so much, saved me a couple of hours, I am new to SQL so learned something very helpful today.. thanks alot
January 31, 2008 at 10:07 am
Thank you very much for ur explaination
November 14, 2007 at 7:11 am
Thank you for your help. The code worked but could you please tell me what the CHAR(13) + CHAR(10) are used for and can the length of the fields be...
November 13, 2007 at 8:25 am
Thank you for your help.
This a third party application, so nothing can be changed and they create a new table in the yyyymm format everymonth but if the application hangs...
November 9, 2007 at 10:13 am
I can create a view using a variable below..
declare @newname varchar(60), @sql nvarchar(1500)
set @newname = 'Checks' + CONVERT(VARCHAR, DATEPART(YEAR, GETDATE())) + '_1'
set @sql = 'CREATE View testview AS
select...
November 9, 2007 at 9:57 am
Cory Ellingson (11/6/2007)
set @newfilegroup = substring(CONVERT(VARCHAR, DATEPART(YEAR, GETDATE())), 3, 4)
EXEC ('ALTER DATABASE northwind ADD FILEGROUP [' + @newfilegroup + ']')
It needs to be wrapped in the [...
November 6, 2007 at 9:21 am
yes.. maybe but the thing is that right now they are created manually as yearlys like 07, 08 that works fine..
November 6, 2007 at 8:31 am
filegorup names can start with number.. right now they are manually created as 07, 08 and so on..
November 6, 2007 at 8:30 am
Thankyou for your help.. i tried using dynamic sql for creating a filegroup as a task in the beginning of the package but that is giving me an error now..could...
November 6, 2007 at 7:07 am
Viewing 15 posts - 1 through 15 (of 16 total)