Viewing 15 posts - 91 through 105 (of 286 total)
Click "New" to create new directory and test if it works (you will have to use new name "ReportsDev" or something different).
August 6, 2010 at 12:26 pm
Hi,
You can get more information if you use Profiler. It can show you Application Name, Host and even process ID on that host.
August 5, 2010 at 6:49 pm
If someone edits the dtsx file on the file system and doesn't import it into SQL Server, there's no way I'm aware of (if you aren't running version control software)...
August 5, 2010 at 7:15 am
You can log CREATE LOGIN, CREATE USER, ALTER LOGIN, ALTER USER, ADD ROLE MEMBER, ADD SERVER ROLE MEMBER and other events (http://technet.microsoft.com/en-us/library/bb522542.aspx) using DDL triggers.
July 24, 2010 at 4:21 pm
I have added my vote as well.
It would be confusing to get this question on interview, is it? I wouldn't know what is the right answer, probably would give...
July 24, 2010 at 11:13 am
I new I will get incorrect answer 🙂
I based my answer on sys.indexes "type" column:
Type of index:
0 = Heap
1 = Clustered
2 = Nonclustered
3 = XML
4 = Spatial
July 22, 2010 at 6:49 am
You may try to use "CREATE INDEX WITH DROP_EXISTING" to enable indexes: http://technet.microsoft.com/en-us/library/ms177406.aspx.
Be carefull when you disable ALL indexes, disabling a clustered index on a table prevents access to the...
July 21, 2010 at 6:22 pm
3) Yes, rebuilding indexes requires more space, but it depends on index size. I have database that takes more than 3 times space than actual data because of index rebuilds.
You...
July 21, 2010 at 6:09 pm
You don't have to pay for the separate instances on your new server, you will be licensed per CPU or per user (depending on your license mode).
July 21, 2010 at 6:02 pm
Hi,
I usually install service packs, but I wait for a month or so to make sure that there are no corrections to it (like it happened with SQL 2000 SP3a)....
July 21, 2010 at 5:56 pm
Hi,
I think this article from Microsoft has answer to your question: http://support.microsoft.com/kb/2027550
July 21, 2010 at 5:46 pm
No, the other way around. I thought that you do it with another job step.
July 21, 2010 at 6:24 am
You can try to add Maintenance Cleanup task step (on success) inside the maintenance plan itself instead of adding job step. This perfectly works for me.
July 20, 2010 at 6:51 pm
I prefer to use msdb. It allows to have folders hierarchy and keep track of versions. I have report that displays all packages with versions numbers and hierarchy. Also, as...
July 20, 2010 at 6:38 pm
That was Friday's madness 🙂
SELECT * FROM YourTable
WHERE convert (datetime,YourColumn) =
DATEADD(month,1,convert (datetime,convert(varchar(10), getdate(), 101), 101))
July 17, 2010 at 8:53 am
Viewing 15 posts - 91 through 105 (of 286 total)