Viewing 15 posts - 76 through 90 (of 96 total)
Thank you so much for the help.
As the restore was done through job, from where will I be able to know the data, I mean how much restore is done?
Also...
January 23, 2009 at 6:57 am
Even I tried with invalid names and it is returning 0. I am still confused whats the usefulness of sp_validname
January 2, 2009 at 4:35 am
Hi All,
I have a problem which everybody is discussing.
I need to find the duplicate record in the table. Its not a matter of just 1 column.
create table #temp
(ddatetime datetime ,
...
November 24, 2008 at 9:44 am
yes!!!
I want to delete records from table but do not want any entry in the log file ..
is it possible..
or
while deleting only can i truncate the log file???
September 19, 2008 at 5:58 am
Hi,
I anybody have any dml statments that while deleting the records it does not goes into the log or the moment 1 delete is complete it should truncate the log...
September 19, 2008 at 4:31 am
you can try this..
USE database_name
GO
DBCC SHRINKFILE (database_log,55)
GO
backup LOG database_name with truncate_only
GO
DBCC SHRINKFILE (database_log,50)
GO
USE master
DBCC SHRINKDATABASE (database_name, 2)
GO
September 18, 2008 at 4:53 am
SELECT CASE WHEN PATINDEX('%'+@Delimiter+'%', SUBSTRING(@String, number+1, 12)) > 0
THEN SUBSTRING(@String, CASE number WHEN 1 THEN...
September 2, 2008 at 4:01 am
Hi Chris,
I am having problerm as to what have you done in the code.
I am not able to understand properly step by step how and what is happeneing..
can you please...
September 2, 2008 at 3:42 am
Yep,
But Thank you so much..:)
September 2, 2008 at 2:27 am
Thanks a million..
It works..
Thank you so much..
🙂
September 1, 2008 at 10:24 am
It really works..:w00t:
Thank you soooooooooooooooooooooooooooo much.. :w00t::w00t::w00t:
Thank you so much..
:):laugh:
September 1, 2008 at 10:07 am
Viewing 15 posts - 76 through 90 (of 96 total)