Viewing 15 posts - 856 through 870 (of 1,166 total)
Is traditional backup means native sql server backup?
If the answers is yes...
You can take take native backup for SAN attached databases... I do that everyday...
You can take native backup as well as...
MohammedU
Microsoft SQL Server MVP
December 20, 2006 at 6:25 pm
If you are talking about Ent Edtn --> Dev Edtn.
I think that is called downgrade not upgrade.
MohammedU
Microsoft SQL Server MVP
December 20, 2006 at 6:16 pm
I think the function name is: DATE
MohammedU
Microsoft SQL Server MVP
December 20, 2006 at 6:14 pm
I don't think it possible to add views to database diagrams..
MohammedU
Microsoft SQL Server MVP
December 20, 2006 at 6:11 pm
Because it is disk problem... if you remove the one table from that problematic area on the disk by running the CHECKTABLE...
but when you insert the new data it writes to...
MohammedU
Microsoft SQL Server MVP
December 20, 2006 at 6:04 pm
I am using the sP_help_revlogin since long time without any issues...
How to transfer logins and passwords between instances of SQL Server
http://support.microsoft.com/default.aspx/kb/246133
MohammedU
Microsoft SQL Server MVP
December 20, 2006 at 5:59 pm
Was your sql server 2000 also 64 bit?
Is your dll compatable with 64bit OS?
Adding an Extended Stored Procedure to SQL Server
http://msdn2.microsoft.com/en-us/library/ms164653.aspx
MohammedU
Microsoft SQL Server MVP
December 20, 2006 at 5:58 pm
I think your if statement doesn't make any sense to me syntactically... use the following...
if
(select sysjobhistory.status
from sysjobs join sysjobhistory on (sysjobs.job_id = sysjobhistory.job_id)
where sysjobs.name = 'MYJOB') = 4
Note:...
MohammedU
Microsoft SQL Server MVP
December 20, 2006 at 5:47 pm
http://msdn2.microsoft.com/en-us/library/ms143470.aspx
Trusted connections between a Publisher and a remote Distributor are no longer supported because they did not require a password (trusted connections were used by default in versions prior...
MohammedU
Microsoft SQL Server MVP
December 20, 2006 at 2:10 pm
Do you see any errors/warning is system log?
Looks like HW issue...
1. Backup your corrupted db and restore on to another server.
2. Run DBCC CHECKDB against restored db.
3. If you find...
MohammedU
Microsoft SQL Server MVP
December 20, 2006 at 1:58 pm
How to transfer logins and passwords between instances of SQL Server
http://support.microsoft.com/default.aspx/kb/246133
MohammedU
Microsoft SQL Server MVP
December 20, 2006 at 1:50 pm
As mentioned before You can use SET SHOWPLAN_ALL ON or GRAPHICAL EXECUTION PLAN to find the query is using parallalism or not...And you can force by using MAXDOP option...
But SQL server optimizer...
MohammedU
Microsoft SQL Server MVP
December 20, 2006 at 12:02 pm
Deploying SQL Server 2005 with SAN
http://blogs.msdn.com/sqlcat/archive/2005/10/11/479887.aspx
MohammedU
Microsoft SQL Server MVP
December 20, 2006 at 11:43 am
I don't know but try 4 part table name instead of openquery...
And Why are you using char(8000) when casting date column...Change it to char(10).
MohammedU
Microsoft SQL Server MVP
December 20, 2006 at 11:38 am
Then you should use DBCC CHECKIDENT.. read BOL for details...
http://msdn2.microsoft.com/en-us/library/ms176057.aspx
MohammedU
Microsoft SQL Server MVP
December 20, 2006 at 11:06 am
Viewing 15 posts - 856 through 870 (of 1,166 total)