Viewing 15 posts - 2,521 through 2,535 (of 2,635 total)
I don't see anything wrong with your syntax and I'm not aware of any server settings that would affect it. Are you getting any kind of message when running the...
August 11, 2004 at 12:30 pm
An alternative to the Data Driven Query task is to copy the external data to temporary staging tables then use TSQL in Execute SQL tasks to find the new and...
August 11, 2004 at 11:54 am
I'm not sure I understand your question, but if you want to copy tables schema and data from one database to another database, you can use DTS.
Greg
August 11, 2004 at 11:46 am
According to MS, both the 'production' server and the 'standby' server have to be licensed identically if Enterprise Edition log shipping is used.
To get around that, you could roll your...
August 11, 2004 at 10:12 am
You can buy a product to read and "beautify" the log info. Some are Lumigent Log Explorer, LockwoodTech Log Navigator, Coherent Software Log PI.
You can use the undocumented DBCC LOG.
Syntax:
DBCC...
August 9, 2004 at 4:02 pm
Which server are you trying to schedule the package on? Source or destination?
Greg
August 9, 2004 at 3:06 pm
Look at "Date Time String Transformation" in Books On Line. You'll need to edit the transformation for that field and make the source and destination date format yyyy-MM-dd hh:mm:ss.ffff.
Greg
August 9, 2004 at 10:46 am
Also, how about details of the errors you've received when using DTS & TSQL.
Greg
August 4, 2004 at 12:05 pm
I could be a permissions problem since a scheduled job runs under the SQL Server Agent login rather than your login.
Enable Package logging in the package properties to get more...
August 4, 2004 at 12:01 pm
I might as well throw in my 2 cents. I've always equated Oracle & Sql Server this way:
Oracle SQL Server
August 3, 2004 at 9:43 am
This exact problem was addressed in another forum last week. See this Knowledgebase article:
http://support.microsoft.com/default.aspx?scid=kb;en-us;Q301292
Greg
August 2, 2004 at 3:26 pm
Turning on package logging will record the record count for each task in a log file that you specify.
-Open the package in DTS Designer
-Click on package properties
-Click on the...
August 2, 2004 at 2:41 pm
You don't say what DBCC checks you're doing but try this in your maintenance plan (example uses CHECKDB):
SET QUOTED_IDENTIFIER ON
DBCC CHECKDB(mydb)
July 30, 2004 at 12:03 pm
Consider using DTS for this. Replication and log shipping may be a bit complex for what you want to do. You could create a DTS package and schedule it for...
July 30, 2004 at 10:29 am
To clarify, Johnny, active/passive refers to server clustering. I assume you're not using that since you said you would restore a backup of your production server to your backup server.
Greg
July 30, 2004 at 9:44 am
Viewing 15 posts - 2,521 through 2,535 (of 2,635 total)