Viewing 15 posts - 256 through 270 (of 1,098 total)
Can try something like this:
SELECT Job_Id, SUBSTRING(job_Desc,1, 500) + CHAR(13) + CHAR(10) + SUBSTRING(Job_Desc, 501, LEN(Job_Desc))
FROM Job
March 23, 2004 at 5:46 am
Can't do it directly. BCP doesn't copy column names.
Maybe if you create a temp table with the column names as records and also the data you need to export.
You can...
March 22, 2004 at 12:33 pm
Agree. If you need to add procesors and/or memory and it exceeds the permited in the standard edition, then you should upgrade.
March 22, 2004 at 12:23 pm
If possible run DBCC DROPCLEANBUFFER in both servers before running the sp. But be carefull because in production may be dangerous. Check in BOL for explanation.
Also check differences with indexes,...
March 22, 2004 at 12:13 pm
Check the logins with
SELECT name
FROM master.dbo.syslogins
WHERE IsNTName = 1
March 22, 2004 at 7:52 am
Do you have any process wich runs them?
Do you have any sp wich uses sp_Start_job?
Check if any other job, runs them, or if you have any alert that executes them.
March 22, 2004 at 7:45 am
Are you using EM? With wich option.
Try DBCC SHRINKFILE instead.
March 22, 2004 at 7:44 am
At what time was your last log backup?
March 22, 2004 at 7:06 am
You could create a process wich bcp out all the tables that you need to .txt articles. If you can filter the data using any date column much better, so...
March 22, 2004 at 7:03 am
You can replicate image columns in transactional replication, but the validation that SQL uses it is a count from the table (or the rows columns in sysindexes) and a checksum....
March 22, 2004 at 6:07 am
Check if the sp uses any temp table (#) and if so, check the collation of the tempdb database.
If it is different with db that you try to compare, then...
March 22, 2004 at 5:54 am
No. You will have to create your own audit method. With sp to access tables, triggers or profiler.
March 22, 2004 at 5:51 am
You should check in script already posted in this site. There are many and some of them are very good.
March 19, 2004 at 1:26 pm
It is a different version of the same stored procedure created by the replication because when tried to replicate with the first sp, it failed.
Then it will continue using the...
March 19, 2004 at 1:19 pm
Did you try to rebuild the publication?
You will need to drop all subscriptions, re create the publication and then subscribe again.
It can take a long time, but most of the...
March 19, 2004 at 1:06 pm
Viewing 15 posts - 256 through 270 (of 1,098 total)