Viewing 15 posts - 6,271 through 6,285 (of 9,244 total)
mfreeman 45141 (11/7/2011)
-----------------------------------------------------------------------------------------------------------
"Ya can't make an omelette without breaking just a few eggs" π
November 7, 2011 at 11:38 am
Jonathan's C# script here
-----------------------------------------------------------------------------------------------------------
"Ya can't make an omelette without breaking just a few eggs" π
November 7, 2011 at 10:57 am
You can do this via SSIS or Jonathan Kehayias showed how to this directly through SMO. I'll see if i can find the link
-----------------------------------------------------------------------------------------------------------
"Ya can't make an omelette without breaking just a few eggs" π
November 7, 2011 at 10:51 am
they more than likely deleted a system database by mistake, as Gail says error messages please!
-----------------------------------------------------------------------------------------------------------
"Ya can't make an omelette without breaking just a few eggs" π
November 7, 2011 at 10:47 am
Windows 2003 or Windows 2008 cluster?
-----------------------------------------------------------------------------------------------------------
"Ya can't make an omelette without breaking just a few eggs" π
November 7, 2011 at 10:45 am
In a maintenance plan not sure don't use them myself. Via T-SQL, use the mirror capability in the backup database command like so
BACKUP DATABASE AdventureWorks
TO DISK = 's:\mybackups\somedatabase.bak'
MIRROR TO DISK...
-----------------------------------------------------------------------------------------------------------
"Ya can't make an omelette without breaking just a few eggs" π
November 7, 2011 at 10:31 am
Check the Windows services for a SQL Server Reporting Services service
-----------------------------------------------------------------------------------------------------------
"Ya can't make an omelette without breaking just a few eggs" π
November 7, 2011 at 10:30 am
This
declare @date datetime
set @date = '2011-11-08 21:30:00.000'
select CONVERT(VARCHAR(30), @date, 109)
Or this
declare @date datetime
set @date = '2011-11-08 21:30:00.000'
select CONVERT(VARCHAR(30), @date, 100)
-----------------------------------------------------------------------------------------------------------
"Ya can't make an omelette without breaking just a few eggs" π
November 7, 2011 at 10:29 am
alark (11/4/2011)
-----------------------------------------------------------------------------------------------------------
"Ya can't make an omelette without breaking just a few eggs" π
November 6, 2011 at 3:45 pm
how are you loading the data?
as GSquared has already pointed out you must set identity_insert on within the same session
-----------------------------------------------------------------------------------------------------------
"Ya can't make an omelette without breaking just a few eggs" π
November 6, 2011 at 3:41 pm
in fact, don't start SQL Server in single user mode by modifying the startup parameters, stop the service and then use the command prompt to start your instance in single...
-----------------------------------------------------------------------------------------------------------
"Ya can't make an omelette without breaking just a few eggs" π
November 6, 2011 at 3:37 pm
to find the Windows process id for an instance of SQL Server you can also use SQL Server configuration manager π
-----------------------------------------------------------------------------------------------------------
"Ya can't make an omelette without breaking just a few eggs" π
November 6, 2011 at 3:34 pm
Minaz Amin (11/5/2011)
-----------------------------------------------------------------------------------------------------------
"Ya can't make an omelette without breaking just a few eggs" π
November 6, 2011 at 3:29 pm
Everything Ok up to here
Steve-443559 (11/1/2011)
3. Failover the Mirror so that the PHysical Server is the Principal (because the physical server is beefier)
Just install the database onto the physical...
-----------------------------------------------------------------------------------------------------------
"Ya can't make an omelette without breaking just a few eggs" π
November 1, 2011 at 9:24 am
Don Bricker - Illinois (11/1/2011)
-----------------------------------------------------------------------------------------------------------
"Ya can't make an omelette without breaking just a few eggs" π
November 1, 2011 at 8:22 am
Viewing 15 posts - 6,271 through 6,285 (of 9,244 total)