Viewing 15 posts - 3,916 through 3,930 (of 13,469 total)
sure: here's the same databases as a new backup, but placed on a disk with sector sizes of 512:
hope this helps!
March 7, 2013 at 9:46 am
this is a view that I create to show me all the extended properties:
CREATE VIEW VW_CURRENT_EXTENDED_PROPERTIES
AS
SELECT
'' AS...
March 7, 2013 at 8:23 am
easy peasy!
The error could be on my side, or maybe something is different on my backups that you should double check against.
!edit!
something i was thinking: my 2008/2008R2/2012 backups are...
March 7, 2013 at 7:03 am
tried your code, and it doesn't work on all situations;
it found SQL2005 as version 611 just fine, but only that for me.
For others(i have all on my dev machine), it...
March 6, 2013 at 3:14 pm
if the view "dbo.myview" references any objects in another database, a linked server or a schema different than dbo, then that's breaking the cross database chain.
you said it was referencing...
March 6, 2013 at 12:24 pm
you could also consider a server side trace, with a filter on the HOSTNAME property to match the machine you want to watch
the problem with that is it's possible to...
March 6, 2013 at 7:57 am
balasach82 (3/6/2013)
what about using ssis to move loginsor
using management studio to script out logins and users (but it comes with default disable login option)
SSIS has a Transfer logins Task as...
March 6, 2013 at 7:37 am
balasach82 (3/6/2013)
Whats the best way to copy logins, users, logins with password along with exact status of enable/disable from source 2008 to destination server 2008
Microsoft provides a downloadable query named...
March 6, 2013 at 7:05 am
inside a cursor, that's normal; what you want to do instead of print is raise a low level error inside via RAISERROR the cursor so you can see things...
March 6, 2013 at 6:46 am
you could place GO statements between each command, but you still have to manually ignore the errors...makes it hard to determine which are "ignorable" errors and which are real.
instead, consider...
March 6, 2013 at 6:36 am
gary.p.heath (3/6/2013)
March 6, 2013 at 6:09 am
excel automatically treats anything that looks like a number as a number, dates as dates, etc
I believe you'd have to change you report of the data to explicitly place a...
March 5, 2013 at 2:41 pm
grab it again; i edited it and retested it on my machine, it seems to work now.
this is what i would use to review the trace:
--SELECT * from sys.traces
declare @TraceIDToReview...
March 5, 2013 at 12:50 pm
as far as i know, you cannot alter a user defined type.
you have to remove references to it, drop it, recreate it with a new definition, and then re-establish the...
March 5, 2013 at 12:40 pm
there's a couple of ways to tackle this, but it depends on what the focus is:
if you want to absolutely prevent the login from UPDATE, you'd create a group,...
March 5, 2013 at 12:08 pm
Viewing 15 posts - 3,916 through 3,930 (of 13,469 total)