Viewing 15 posts - 421 through 435 (of 1,655 total)
As Chris already wrote it would help a lot if you posted the schema.
But one thing I noticed is you write, you want to update records, but you execute...
April 3, 2009 at 3:16 am
yellow (4/1/2009)
How to make the publisher and subscriber resynchronized?Thank you again.
- Yelu Zhou
It depends a bit on the size and number of your tables which are out of...
April 2, 2009 at 12:35 am
yellow (3/31/2009)
April 1, 2009 at 8:33 am
Sounds like the dependencies between the cluster resources is not configured correctly.
In the Windows Cluster Admin tool make sure that the SQL Server service depends on both disks. This...
March 31, 2009 at 7:07 am
Assuming there's only one occurance of a white space you can use something like this:
SELECT LEFT(Part_ID, CHARINDEX(CHAR(32), Part_ID))
March 30, 2009 at 8:27 am
Yes of course.
DB Mirroring is something completly different to clustering and while it's possible to combine them, there's no dependcy between them.
March 27, 2009 at 4:57 am
You can add this button (or any other button) by going Tools>Customize. Go to the commands tab, in the categories llst select Window and there you can find the button....
March 27, 2009 at 4:38 am
Simply use sp_dropsrvrolemember to remove any login from a serverrole like sysadmin.
EXEC sp_dropsrvrolemember 'yourLogin', 'sysadmin'
With sp_update_Job you can change the owner of a job.
March 27, 2009 at 3:47 am
Graham.Okely (3/23/2009)
Does anyone know where xp_delete_file is documented?
There is no official doumentation from MS.
See here http://sqlblog.com/blogs/andy_leonard/archive/2009/03/11/xp-delete-file.aspx for some unofficial info.
March 23, 2009 at 4:35 am
xp_sqlmaint was used by the SQL 2000 maintenance plans.
In 2005 maintenance plans are created as SSIS packages. So instead of using the EXEC T-SQL task use an Integration services...
March 20, 2009 at 3:26 am
If you have not auditing triggers or tracefiles, the only option to get all the detailed info would be using some third-party tools to read out your transaction log files...
March 20, 2009 at 3:21 am
You can use SELECT in combination with an INSERT only you don't use the VALUES part.
This should work for you:
INSERT INTO [dbo].[b1] ([b1],[b12])
SELECT b2.b1ref, b2.b22
FROM dbo.b2 WHERE dbo.b2.b1ref...
March 20, 2009 at 3:09 am
This one is not pretty and there might be some other option is SSIS, but when converting the run_date from SQL server jobs in the msdb..sysjobhistory table, this is...
March 18, 2009 at 9:29 am
In SQL2005 or later sysadmins and anyone whith ALTER TRACE permission can use profiler.
In SQL2000 or earlier only sysadmins can run a trace in profiler.
March 18, 2009 at 9:07 am
Keep in mind that Indexed views are only supported in the Enterprise Edition of SQL 2000
March 18, 2009 at 4:12 am
Viewing 15 posts - 421 through 435 (of 1,655 total)