Viewing 15 posts - 3,841 through 3,855 (of 7,503 total)
If you have (recent) backups (or the old files) of msdb, you should be able to restore it and your jobs will be back.
April 5, 2009 at 11:48 pm
Boolean_z (4/4/2009)
And this should be done just after installation...
April 5, 2009 at 10:14 am
wow ... msaccess with 20Gb data ??
also check "microsoft migration assistant for sqlserver" which if free at http://www.microsoft.com/Sqlserver/2005/en/us/migration.aspx
April 5, 2009 at 10:12 am
Your query returns duplicates !
SELECT adv.A_AdvertiserID
,'Mobile'
,ab.[Telephone2]
FROM [MSCRM].[dbo].[AccountBase] ab
JOIN [DIGADV].[dbo].[Advertiser] adv
ON ab.[Name] COLLATE DATABASE_DEFAULT = adv.A_AdvertiserName COLLATE DATABASE_DEFAULT
Solution ?
- Check PK on names ?? (In my home town we had 3...
April 5, 2009 at 10:08 am
We use this one at sql2000.
Select @@servername as Servername, getdate() as RunDate
/*
* Show members of serverrole sysadmind
*/
exec sp_helpsrvrolemember @srvrolename = 'sysadmin' -- =SA
go
/*
* show members of the...
April 5, 2009 at 10:00 am
indeed ... an authorzation issue to the linked server BRENTREPODB02.
How did you set up the linked server usage security ?
BTW: nice view ... using the mixture of right and...
April 3, 2009 at 1:51 pm
maybe stupid, but did someone use any form of compression ? (drive/LUN level)
April 3, 2009 at 1:45 pm
of course that also depends on what your udf is doing !
is it just a split/string function or does it perform access to other objects ?
if you post it we...
April 3, 2009 at 1:41 pm
Actually the install of sql2000 shouldn't cause a technical problem.
Who detached your database ?
Where has it gone to ?
Did someone just uninstall the sql2005 engine ?
April 3, 2009 at 7:10 am
and off course there is a difference in Red Cross junior camp first aid, Paramedic first aid and combat first aid 😀
According to their trained skills, you may have a...
April 2, 2009 at 1:42 pm
Well ... your indexes also need space !
So depending on the size of the columns you used in the index ddl, they will be smaller or larger combined with the...
April 2, 2009 at 1:27 pm
Outrageous for any software to be implemented in that way !
Complain to your manager that this simply is not acceptable !
Have him complain with the software vendor and make it...
April 2, 2009 at 1:15 pm
ldave (4/2/2009)
I have created a view with code that looks like below.
use testprd;
SET NUMERIC_ROUNDABORT OFF;
SET ANSI_PADDING, ANSI_WARNINGS, CONCAT_NULL_YIELDS_NULL, ARITHABORT,
QUOTED_IDENTIFIER, ANSI_NULLS ON;
create view test wtih schemabinding as...
April 2, 2009 at 1:07 pm
I think "discovery"' doesn't function on 64-bit environments.
You should be able to just enter the sqlserver name (server\instance) and connect with ssms !
If that doesn't work...
Did you enable the SQL...
April 2, 2009 at 6:36 am
Your trigger tries to execute sprocs in the [Changes] database !
EXEC [Changes].[dbo].[ik_ChangeLogInsertI]
Does that database exist on the sql instance ?
OR
Does the user executing the update have the needed...
April 2, 2009 at 6:30 am
Viewing 15 posts - 3,841 through 3,855 (of 7,503 total)