Viewing 15 posts - 31 through 45 (of 50 total)
It is very easy to get caught up in trying to come up with a perfect spec, but it is rarely worth the time since you are running a virtual...
April 30, 2013 at 3:32 am
You probably know this but it is servername\instance not / (you wrote / twice so maybe thats the problem?).
Have you tried servername,portnumber instead of servername\instance?
February 26, 2013 at 7:24 am
This will extract only users from selected database. Got it here at sqlservercentral, can't remember who though.
USE DATABASE
GO
select'CREATE LOGIN ' + sl.name +
' WITH PASSWORD = ' + sys.fn_varbintohexstr(sl.password_hash)...
February 21, 2013 at 2:23 pm
Hi,
I've inherited priority boost a number of times (im a consultant) and every time the DBA/Techie that turned that option on
did it without knowing what it does. "It sounded...
February 21, 2013 at 1:06 pm
Primary key maybe.
Something that helps you identify the row.
You could also narrow down the problem if above isn't working for you.
Select column from xx
where column between 1 and 100.
if...
February 20, 2013 at 7:17 am
Did you restore over an existing database without using the overwrite flag?
February 20, 2013 at 6:42 am
Basically you have to identify the rows that contain the invalid value and update them with a valid value.
Have a look at:
Troubleshooting DBCC error 2570 in SQL Server 2005 and...
February 20, 2013 at 6:29 am
Right on, all the things you described sounds right.
I run everything in vmware, if you have a very good set up regarding storage/com/vmware you are good to go.
Off course you...
February 19, 2013 at 8:20 am
Abu Dina.
How about INIT or using diffrent filenames for each backup =)
February 12, 2013 at 8:35 am
Hi,
Use management studio (2008), connect to your 2000 instance, expand sql agent, right click on a job, Script job as>Create to> File or new query editor window.
Use the generated code...
February 12, 2013 at 8:29 am
Google.com - Search for:
SQL Server 2008 setup100.exe and setuppatch.exe cannot be run in this mode
There is a lot of info about this.
November 16, 2012 at 12:29 pm
Sorry I cant.
If I have any problems I always turn to Quest, they got all the info and support you would need.
November 1, 2012 at 7:14 am
Log in to quest, they probably have a kb for the issue.
October 30, 2012 at 4:47 pm
Viewing 15 posts - 31 through 45 (of 50 total)