Viewing 15 posts - 1,156 through 1,170 (of 1,364 total)
Have you gone thru the following suggestion from Tibor-
It is an errorlog file for the SQL server Agent service. The fact that it is so big in size is worrying....
August 25, 2008 at 2:17 pm
Do you see this user entry in sp_helpuser output(Users Column)?
sp_helpuser
I did the same on my instance and it is working fine as user is listed out there.
Or Try this:
...
August 25, 2008 at 2:11 pm
Is this database migrated or came from Microsoft Access?
MJ
August 25, 2008 at 1:58 pm
I suspect it has do to something with database collation. Also, check sys.objects view results to verify the tablenames there.
Are they having [] in their name in sys.objects too?
MJ
August 25, 2008 at 1:22 pm
What is the table name here? Is it a sql reserved keyword?
MJ
August 25, 2008 at 1:06 pm
Steve, Thanks for your prompt reply. Yep I was asking for some major bullet points that need to be considered prior to migration.
I got that from ur reply(windows authenticated logins...
August 25, 2008 at 1:04 pm
Declare @BytesUsed Varchar(1000),
@BytesFree Varchar(1000),
@TotalBytes BIGINT,
@IDENTITY INT,
@drive Char(1),
@sql Varchar(1000)
SET NOCOUNT ON
Create table ##DiskSpace ( Drive Char(1), TotalSpace Bigint, FreeSpace Bigint,
PercentageFree as (FreeSpace*100 / TotalSpace...
August 25, 2008 at 12:50 pm
Go thru this link once which says "You cannot restore system database backups to a different build of SQL Server":-
http://support.microsoft.com/kb/264474
HTH
MJ
August 25, 2008 at 11:15 am
Are you opening TCP port on your local machine or on remote server? Is the 2005 instance you are trying to access is name instance or default one?
Manu
August 22, 2008 at 11:06 am
You can use the following code:
declare @Command as varchar(5000)
set @Command = 'C:\Progra~1\winzip\wzzip.exe "H:\SQLBKUP\test.zip" "H:\SQLBKUP\test.txt"'
exec master.dbo.xp_cmdshell @Command
Make sure that 'C:\Progra~1\winzip\wzzip.exe "H:\SQLBKUP\test.zip" "H:\SQLBKUP\test.txt"' is a single long statement in one line(no line...
August 21, 2008 at 4:27 pm
August 20, 2008 at 4:52 pm
You can make use of xp_cmdshell under execute sql task under dts package:
cd "directory path where file that need to be zipped is placed"
"C:\Program Files\WinZip\wzzip.exe" -sPassword -ee -yc zipfilename.zip filethatneedstobezippedname
MJ
August 20, 2008 at 3:50 pm
Okie. Try this leave login name in uppercase(as configured under AD) and change username(currently it would be all uppercase) to have letters in lowercase.
Hope this helps..
MJ
August 19, 2008 at 1:18 pm
SQL installation in your case is case sensitive one. Change job owner from N'EBE\HBUCKNER' to N'EBE\hbuckner' and then try executing the job again.
MJ
August 19, 2008 at 12:49 pm
Try using sp_droppublication(if publication still exists), sp_dropsubscriber and sp_removedbreplication stored procedures on publisher.
MJ
August 19, 2008 at 10:14 am
Viewing 15 posts - 1,156 through 1,170 (of 1,364 total)