Viewing 15 posts - 196 through 210 (of 374 total)
Thank you Jack.
That's what I thought.
July 21, 2008 at 10:45 am
I decided to do my own investigation.
I created a Common2 database on SQL 2000 box.
1.
On this box on Server level I created SQL Login "yegorov"
without any mapping to databases.
SQL Server...
July 21, 2008 at 10:06 am
Actually I did a test.
I tried to create SQL Login "NewGuy"
and got error:
Error 15007: the Login "NewGuy" does not exist.
So first, one has to create a Login on a Server...
July 21, 2008 at 8:05 am
Hi Utsab,
Both old and new servers are on the same DOMAIN.
You wrote
"...You only need to make sure that for each DB Domain login, you have server login..."
Does it mean I...
July 21, 2008 at 7:39 am
Anjan,
So in your opinion you need to do some manual stuff
after Restore, like create a Role, for example, and add Login to this Role.
Basically it means sp_revlogin is not enough....
July 18, 2008 at 12:43 pm
I installed new SQL 2005.
It's empty. No databases.
I want to bring over to this 2005 server all 2000 stuff.
Actually it looks like Restore created all Logins/Roles correctly in 2005.
I tested...
July 18, 2008 at 6:40 am
The issue has been resolved.
Apparently we were running Import process still in FULL INITIAL LOAD mode.
Clients table had 243,000 records and SQL code (I still don't like but I don't...
July 16, 2008 at 12:25 pm
There was some offending transaction hanging.
Apparently it was DTSDesigner, LastBatch: today at 6:07 AM
SPID: 54. I killed it and Current Activity can be accessed now.
It actually was causing more problems...
July 16, 2008 at 8:49 am
Guys,
my debugging prints get buffered a lot.
Is there any way to flush them?
July 15, 2008 at 1:26 pm
Hi Jeff,
First of all it's not my code.
I would never code like this.
It's a third party software we're using and
the vendor keeps telling us "it's your environment problems. tempdb size,
not...
July 15, 2008 at 12:14 pm
Code is below.
Job slows down at
"Clients...Start-Batch Updates" point, CPU spikes to 100%,
after 11 hours it finally moves further and the job finishes.
CREATE ...
July 14, 2008 at 9:36 am
Actually the story continues.
Now one of next steps of that SQL Job (SSIS package) fails
with the same error
[Execute SQL Task] Error: Executing the query "insert vsImport.dbo.Import_log(message,[Table],[time]) values('Niad.dtsx started','Dundee-Custom-Entry',getdate())" failed with...
July 9, 2008 at 11:49 am
The issue is fixed.
I changed Default database
for "niadetl" SQL Server Login on Box 2 which is used to register Linked Server on Box 1.
Now it's "master".
July 9, 2008 at 8:55 am
I don't have any other solution other than add another job step
"Cancell_If_Time_Passed":
IF datepart(hour, getdate()) >= 23
BEGIN
execute Send_Status_Email 6,0
EXEC msdb..sp_stop_job @job_name = 'NIAD_stop_job'
END
It's too many little steps now in the job
and...
July 2, 2008 at 1:59 pm
Are you suggesting this:
declare @CurrentDt smalldatetime
declare @CurrentDtStr varchar(8)
set @CurrentDt = getdate()
set @CurrentDtStr = CONVERT(VARCHAR,@CurrentDt,112)
WHILE NOT EXISTS
(
...
July 2, 2008 at 1:30 pm
Viewing 15 posts - 196 through 210 (of 374 total)