Viewing 15 posts - 496 through 510 (of 1,193 total)
houming1982 (4/17/2013)
Gazareth (4/16/2013)
Easiest way, connect to the mirror server as "A", rather than yourself, and run the restores.What if we do not know the password of the login "A"?
Unfortunately, in...
April 18, 2013 at 3:19 pm
No problem, glad you found a solution!
April 16, 2013 at 2:29 pm
houming1982 (4/16/2013)
April 16, 2013 at 2:13 pm
ravi@sql (3/26/2013)
In the above queries gives the same output
Not necessarily. For example, just tried it on one of my tables and there's > 500 difference.
The first one gives the last...
March 26, 2013 at 10:45 am
An instance of both is fine - but I think the Management Studio that comes with Express doesn't have the full functionality.
You could try running a repair on the client...
March 26, 2013 at 5:53 am
It's a stab in the dark, but do you have Management Studio Express installed, rather than the full version?
March 26, 2013 at 3:46 am
Hi,
You can use DBCC CheckIdent to reseed the column, assuming the values aren't used elsewhere in the database?
To avoid this in the future you could remove the identity property and...
March 22, 2013 at 6:24 am
Divine Flame (3/19/2013)
March 20, 2013 at 7:16 am
No problem!
Do you need instant notification?
You could achieve this with a trigger on the table calling database mail. I'd be wary of making changes directly to 'system' tables like this...
March 15, 2013 at 11:07 am
Hi Mike,
something like this?
use ReportServer
go
SELECT u.UserName, c.CreationDate, c.Name, c.[Path]
FROM dbo.[Catalog] c
left join dbo.Users u on u.UserID = c.CreatedByID
Cheers
March 15, 2013 at 9:15 am
Hi, have you checked they're connecting to the database you think they are?
You can grab the info from profiler - User Error Message event.
Just to rule out a misspelt connection...
March 14, 2013 at 5:46 am
Hi Andrew,
I just discovered this undocumented function recently:
declare @timestring varchar(10) = '12345'
select cast(msdb.dbo.agent_datetime('19000101', @timestring) as time(0))
Any good?
Cheers
Gaz
March 13, 2013 at 11:31 am
fmuzul (3/13/2013)
someone should suggest to SQLServerCentral to start some form of "competition among developers/DbAdmins". A problem of data manipulation, in a field that people...
March 13, 2013 at 10:08 am
Viewing 15 posts - 496 through 510 (of 1,193 total)