Viewing 15 posts - 91 through 105 (of 604 total)
SELECT i.name, o.create_date
FROM sys.objects O INNER JOIN sys.indexes I
ON o.object_id = i.object_id
WHERE OBJECT_NAME(o.object_id) = 'TableName'
August 18, 2009 at 9:04 am
Should you not be telling us what you'd expect to see?
😛
August 18, 2009 at 8:30 am
Forgot to mention, once you have added the login back in, if you try to add the user, you'll likely get a message telling you the user already exists in...
August 18, 2009 at 7:27 am
Sure, if you only have a few logins / databases etc in the master database, then yes, you can attach your client database and quickly add the logins back in...
August 18, 2009 at 7:25 am
Also, if you are connecting from a desktop where you only have client tools installed, you won't see the Reports menu
August 18, 2009 at 7:21 am
Do you have reporting services installed?
August 18, 2009 at 7:15 am
You can run a profiler trace and include the hostname in that trace.
August 18, 2009 at 6:35 am
Hi,
The only one I have seen in use is Spotlight from Quest - they gave me a demo. It's a usefull tool.
August 18, 2009 at 6:24 am
You mentioned "system files". I'm not sure if you meant SQL binaries or system databases?
If you meant your system databases were also on C then you'll need to recreate...
August 18, 2009 at 6:10 am
Profiling the database would also be a good idea - get an general idea of performance. Cross reference this when speaking to the clients to allow you to formalize...
August 18, 2009 at 5:25 am
It's a catch-22 situation. I was interested in the finance world, but like you, all of the jobs would require a decent knowledge of finance. To be honest,...
August 18, 2009 at 3:53 am
BI Documenter is also a pretty good tool. Creates a compiled HTML file.
We use this to distribute schema documentation to clients.
August 18, 2009 at 3:37 am
SELECT TOP 1 Manufacturer
FROM CarManufacturer
GROUP BY Manufacturer
ORDER BY COUNT(1) DESC
August 18, 2009 at 3:02 am
Steve nailed it.
However, I'm not sure if this would be applicable in your environment, but we had one user who used their login credentials in an excel spreadsheet and this...
August 17, 2009 at 10:20 am
Viewing 15 posts - 91 through 105 (of 604 total)