Viewing 15 posts - 721 through 735 (of 1,539 total)
mysticslayer (7/12/2009)
July 13, 2009 at 3:28 am
S Hodkinson (7/13/2009)
We have now been requested to stop backing up the transaction logsIt seems that the TSM will backup and restore everything in the future
Just to clarify, the TSM...
July 13, 2009 at 2:54 am
While creating a new database, you've specified the path of the new data/log files where files with the names u've specified already exist. Either change the path or change the...
July 12, 2009 at 5:52 am
isabel (7/12/2009)
July 12, 2009 at 5:49 am
isabel (7/12/2009)
July 12, 2009 at 5:47 am
I changed the datatype of @TimeStamp parameter of the sp to TimeStamp and created some test data and i could select exact values
-- create a test table
create table #t
(
col1 int,
timestamp...
July 12, 2009 at 5:40 am
I suggest you to go through THIS article by Gail. Very good explaination on what options we have when log gets full or missing.
Edit-fixed the URL
July 12, 2009 at 5:15 am
can you pls post an example of the format of source data that u want to be converted to datetime?
July 12, 2009 at 5:04 am
Sourav Mukherjee (7/12/2009)
How to change it back ot normal?
ALTER DATABASE abc SET ONLINE
July 12, 2009 at 5:00 am
I'd prefer Full as it would allow me to recover primary database to point in time(1) and any which ways log backups in bulk-logged recovery mode are (perhaps) larger than...
July 12, 2009 at 4:26 am
The error you posted looks like the user doesn't have sufficient privilages to insert data in Books table. Can you reconfirm that as well?
July 12, 2009 at 4:02 am
create table #temp1
(
fld1 varchar(10),
fld2 varchar(10)
)
declare @sql nvarchar(500)
declare @FIELDS nvarchar(500)
declare @values nvarchar(500)
set @fields='fld1'
set @values='test value'
set @sql='insert into #temp1 ('+@FIELDS+') values ('''+@VALUES+''')'
--print @sql
exec(@SQL)
This code worked fine for me. Can you post the...
July 12, 2009 at 4:00 am
jclecordier (7/12/2009)
I have 100 millions records of data and need to manipulate it. Please help...
Are you worried abt performance or you just want help in insert/update/delete? In that case pls...
July 12, 2009 at 2:35 am
Do you mean suspect mode, recovering mode....? Pls clarify more..
July 10, 2009 at 9:43 pm
Lynn Pettis (7/10/2009)
select stuff('PQ19188PFHAA',10,1,'')
Thanks Lynn. I'd never used that. Learnt something new here 🙂
July 10, 2009 at 12:22 pm
Viewing 15 posts - 721 through 735 (of 1,539 total)