Viewing 15 posts - 16 through 30 (of 210 total)
I also believe that truncation doesn't cause the package failure. I think there is a threshold as how many errors can happen and probably in your case the threshold is...
March 3, 2011 at 5:21 pm
Hey Roy,
I also thought the same thing but when I run the snapshot this started creating the files even for the tables which already existed. I just executed the snapshot...
February 18, 2011 at 1:07 pm
MS Sql Server Installation Make Easy should help
-lucky
January 29, 2011 at 8:10 pm
January 10, 2011 at 1:48 pm
Thanks Everyone here. I shall prefer litespeed in my env.
Litespeed Link really helped.
January 7, 2011 at 7:43 pm
January 6, 2011 at 7:06 pm
I like following thread for Resolving Full Log Esp in Simple Recovery Mode and then click on Link
-lucky
January 4, 2011 at 4:14 pm
Same happened with me some days back. I executed my query and found that some records have the date column NULL. Use SSRSLink to get some other info as well.
lucky
December 31, 2010 at 11:26 am
Try
INSERT INTO [Details] ([Location]) VALUES N''@Location
or
INSERT INTO [Details] ([Location]) VALUES N'@Location
one of the above should resolve ur problem
-Lk
September 7, 2010 at 11:01 pm
TRUNCATE_ONLY is gone in 2008. The logs would be truncated only and only when you take the backups. So be ready to have your backup jobs monitored all the time.
September 7, 2010 at 10:59 pm
TRY THIS
select * from sys.syscolumns
where length IN (16,8000,-1)
September 7, 2010 at 10:57 pm
try to use @file_attachments.
What is the size of the file. Default size is 1 MB. U need to change some conf settings if ur file size is > 1 MB.
-Lucky
September 7, 2010 at 10:45 pm
Ur solution:
SELECT emp.empno,emp.empname,tmp.Dept ,emp.SAL
FROM empdtls emp
INNER JOIN
(SELECT Max(Sal) Salary, Dept
FROM Empdtls
Group by Dept)tmp
ON tmp.dept = emp.dept
WHERE Salary = emp.Sal
order by tmp.Dept
Create table and insert data using following query:
CREATE TABLE EmpDtls(empno...
September 7, 2010 at 10:39 pm
Viewing 15 posts - 16 through 30 (of 210 total)