Viewing 15 posts - 6,076 through 6,090 (of 6,395 total)
table with the customers which has a uniqueidentifer column which has a default of newid so each customer has a GUID
then have a foreign key constraint to table 1 which...
November 29, 2011 at 4:00 am
I'd agree with Usman, SQL wasnt designed to manage AD.
MS provide the MSC console applications to modify AD objects and they work and do the jobs you need.
Powershell can be...
November 29, 2011 at 3:56 am
declare @text nvarchar(100)
set @text = '1,2,3,4'
select @text = replace(@text,',',''',''')
select @text
gives output as -- 1','2','3','4
November 29, 2011 at 3:50 am
select * into PRODUCTIONDB.SCHEMA.TABLENAME from RESTOREDDB.SCHEMA.TABLENAME
make sure you have backed up the PROD db and either renamed or dropped the table which you wrongly updated
November 29, 2011 at 3:47 am
There is no difference in connecting to the Nodes IP and the Virtual IP. Infact I would almost certainly say always use the Virtual IP address. I say...
November 29, 2011 at 1:37 am
duplicate post, please redirect replies to this topic http://www.sqlservercentral.com/Forums/Topic1212917-391-1.aspx
November 29, 2011 at 1:35 am
you probably wont find the code as that would break the licence terms of the product.
the stored proc is an extended stored procedure which calls a DLL if I remember...
November 29, 2011 at 1:30 am
not to worry, happy to help, is always the simple things that wind you up the most.
November 28, 2011 at 8:25 am
You need to run the script, by pressing F5 or the execute button on the toolbar with the red ! mark
November 28, 2011 at 8:16 am
when you changed the path to the log files, did you copy the existing log folder to the new location after the config change, or did you delete the old...
November 28, 2011 at 4:59 am
check your standby server is copying and restoring the logs?
is the SQL Server and/or Agent online after the reboot?
are the services set to automatic startup? if not set to...
November 28, 2011 at 4:55 am
SQLDBA-536161 (10/17/2011)
I'm having trouble understanding SQL Server active/active cluster model. I was asked by our management about the difference between active/passive active/active to run SharePoint 2010.
I know what...
November 28, 2011 at 4:11 am
simon-811452 (11/28/2011)
November 28, 2011 at 3:51 am
jewel.sacred (11/28/2011)
Dev (11/28/2011)
jewel.sacred (11/28/2011)
Dev (11/28/2011)
It's OK Aaron. 2 Backups are better than 1 (or none) 😉
I think it is not OK (not always atleast). Imagine the...
November 28, 2011 at 3:45 am
Have the tcp/ip and named pipes providers been enabled under SQL Server Configuration Manager on the server by the person who installed SQL?
November 28, 2011 at 3:35 am
Viewing 15 posts - 6,076 through 6,090 (of 6,395 total)