Viewing 15 posts - 91 through 105 (of 105 total)
Adam,
Set the DTS logging, the next time you run it, you can find where is failing. That happened to me with one DTS and after the logging was set I...
January 20, 2006 at 10:21 am
Lonnie,
I wonder if using backup "from device" could help you here. Grab a full back up copy (notaa differential), place it in a directory (any one is fine), rename the...
January 20, 2006 at 10:18 am
Sorry for the writing, sometimes my fingers go faster than my brain, specially on Fridays.
Read logg as Log
and
Cnahge as Change
January 20, 2006 at 7:57 am
There are a coupe of things you can do:
1. If your database recovery model is set to FULL, your logg will keep growing. Cnahge it to SIMPLE (it does the...
January 20, 2006 at 7:53 am
Thanks to all. I did change the maximun characters in QA and it went fine, I will follow the suggestion for DTS now that I am going to run into...
January 13, 2006 at 11:35 am
Thank you guys. I will give it a try using OSQL. Cool, I think that sove my problem!! If not, I will come back a ask a little bit more....
December 6, 2005 at 7:50 am
you can also try with profiler within SQL Server. It basically the same kind of tool as the performer for windows but it can follow all the scripts run at...
December 6, 2005 at 2:17 am
What edition do you use? Standard or Enterprise. Replication is a good tool in 2000 but is a tricky one if not setup correctly. BOL has a bunch of readings...
September 28, 2005 at 8:16 am
Try this one:
DECLARE @Date datetime
SET @Date = getdate()
SELECT DATEADD(dd,-(DATEPART(dw, @Date) - 1),@Date) AS 'First day of the week'
SELECT DATEADD(dd,-(DATEPART(dw, @Date) - 7),@Date) AS 'Last day of the week'
SELECT DATEADD(d, -DAY(DATEADD(m,1,@Date)),DATEADD(m,1,@Date))...
July 20, 2005 at 10:59 am
Latest release: SQL Server 2005 - June Community Technology Preview
There is no Beta3, and will not be. You can ask for a free DVD from Microsoft and it is valid...
July 20, 2005 at 10:51 am
Welcome to the group!!!! This a great place to find information and help.
I think the best way to do the conversion is using DTS (SSIS in 2005) Which will create...
June 17, 2005 at 9:37 am
Thanks Yelena, I am reading anything and everything I can put my hands on. I will keep downing that until I figure out how, what, where, when, why, etc for...
June 17, 2005 at 9:20 am
SELECT tblSaleAgents.SaleAgentEmployeeID,
TempTest.dbo.EMPPF.EMPNUMBER, tblSalesAgents.SalesAgentMInitial,
TempTestCareers.dbo.EMPPF.MINAME, tblSalesAgents.SalesAgentStatus,
TempTestCareers.dbo.EMPPF.EMPSTAT
FROM tblSales LEFT OUTER JOIN TempTest.dbo.EMPPF ON dbo.tblSalesAAgents.SalesAGentFName = TempTest.dbo.EMPPF.EMFNAM AND
tblSalesAAgents.SalesAgentLName = TempTestCareers.dbo.EMPPF.EMLNAM
tblSaleAgents is the local database table
EMPPF is the second database table
So, the syntax is as...
June 15, 2005 at 1:25 pm
Hi Yelena, I am starting to play with SSIS, any advice? Thank you
June 14, 2005 at 2:14 pm
Thanks Frank, it was almost what I needed, but with your sample I modified a couple of things and it work perfectly. Thanks again
June 6, 2005 at 8:13 am
Viewing 15 posts - 91 through 105 (of 105 total)