Viewing 15 posts - 541 through 555 (of 1,081 total)
Not going to provide you with a full working script, but only some directions...
make use of:
syslogins
syspermissions
sys.database_permissions
sysusers
March 9, 2011 at 10:37 pm
I can only think of running it on Mirrored Drives, which I would never recommend for performance.
SQL replication/mirroring will as you said replicate the changes to the databases.
Because the mdf...
March 9, 2011 at 10:30 pm
We have to install our database on client machine (end user machine)
Why? If it's a local DB instance on each machine, and each user is in control of the...
March 9, 2011 at 12:32 am
Try Microsoft's tool, SSMA, I've used it for several migrations without issues.
http://www.microsoft.com/sqlserver/2005/en/us/migration-sybase.aspx
March 3, 2011 at 10:09 pm
Thanks for the question...these RAID questions are nice, they let you think a bit 😉
March 3, 2011 at 9:56 pm
Try Microsoft's Migration assistant tool, I've used it for several migrations, you might need to do some manual changes, but overall a great tool..
March 2, 2011 at 11:05 pm
mohammed moinudheen (2/21/2011)
Not in Primary should also be correct.
Got it right, but was a bit confusing, as I agree that there are multiple correct answers.
February 21, 2011 at 11:51 pm
connect using the ip or ".", then in a query run SELECT @@SERVERNAME.
is this name the same as your host?
February 7, 2011 at 7:26 pm
Make sure all three nodes are configured in Windows Clustering, that all three have potential access to the shared disks, the quorum being essential.
In your setup, you should be able...
January 27, 2011 at 11:30 pm
January 27, 2011 at 11:21 pm
Coming to Melbourne (from South Africa) on Sunday for 2.5 weeks...business trip..
Anything you can recommend I do/see while I am there?
January 25, 2011 at 11:25 pm
you must DECLARE variables, and no comma's after each.
try it as:
ALTER PROCEDURE [dbo].[SP_EMP]
DECLARE @STARTDATE DATETIME
DECLARE @ENDDATE DATETIME
DECLARE @STARTDATE2 DATETIME
SET @STARTDATE2=DATEADD(yy, 1, @STARTDATE)
January 20, 2011 at 12:26 am
select DATEADD(yy,1,getdate())
this statement will add 1 year to getdate().
yy indicates you are adding years, 1 is the amount of years.
for your SP and script...use this sort of method:
declare @d datetime
set...
January 19, 2011 at 11:49 pm
Viewing 15 posts - 541 through 555 (of 1,081 total)