Viewing 15 posts - 1,186 through 1,200 (of 1,653 total)
Ge,
the indexes which are greyed out are most likely created for Primary Keys and Unique Constraints. You can't move those, you must drop the constraint and then re-create it on the correct...
[font="Verdana"]Markus Bohse[/font]
September 6, 2007 at 7:32 am
Shama,
I once had a similar issue after changing the startup parameter for the SQL logs. Make sure that the parameter is set correctly and that there's no space or offer...
[font="Verdana"]Markus Bohse[/font]
September 6, 2007 at 4:55 am
Ashish,
using sp_procoption you can set a stored procedure to execute at startup. So just create stored procedure which would add you user to the tempdb and then set the option.
Another...
[font="Verdana"]Markus Bohse[/font]
September 5, 2007 at 5:44 am
Nelson,
by the way the expression you tried works once you place quotes around the values for the borderstyle.
=IIF(Fields!c3.Value<>0, "Solid","None")
Markus
[font="Verdana"]Markus Bohse[/font]
September 5, 2007 at 3:40 am
Nelson,
why don't you use the Visisbility property with an expression like this:
=IIF(Fields!Col1.Value = 0, TRUE,FALSE)
This hides the cell if it's value is 0. Changing the border style would still display...
[font="Verdana"]Markus Bohse[/font]
September 5, 2007 at 3:04 am
SQLORACLE
sorry if I offended you but I'd like to make two comments.
First of all your article only talks about system databases, while the original post never mentioned these.
Second I've seen...
[font="Verdana"]Markus Bohse[/font]
September 5, 2007 at 1:12 am
Nelson,
I'm not sure what you're trying to achieve but it should be possible by using an expression. In the Properties window change the value for the cell borders from the...
[font="Verdana"]Markus Bohse[/font]
September 5, 2007 at 1:04 am
The indexes with a name like "hind_" are hypothetical indexes left over by the index tuning wizard. There is a KB article about it http://support.microsoft.com/kb/q293177/, but the problem should...
[font="Verdana"]Markus Bohse[/font]
September 4, 2007 at 8:23 am
You can try using some scripts from this article http://www.sqlservercentral.com/columnists/jgama/sqlserverpasswordauditing.asp
or download NSSQLCRACK from http://www.nextgenss.com/products/database-security/ngs-sqlcrack.php. But be aware that if your password is more than 6 characters long it...
[font="Verdana"]Markus Bohse[/font]
September 4, 2007 at 7:49 am
Ganapathi,
somthing like this should work:
Update
myTable
Set col1 = Col1 + 5 -- Put your new value here
where Col2 [font="Verdana"]Markus Bohse[/font]
September 4, 2007 at 12:46 am
Michaela,
when using CLR the placement of the dll is only important while loading the CLR assembly. Once this hace succesfully done you can remove the dll. So even on a...
[font="Verdana"]Markus Bohse[/font]
September 3, 2007 at 12:55 am
Patrick,
you could use the OPENROWSET function, but if you need to do these type of queries regurlarly I would prefer a linked server.
Markus
[font="Verdana"]Markus Bohse[/font]
August 31, 2007 at 6:53 am
chidd,
no, you can't find the name of the machine or user unless you're table design tracks them. I always advice to have a column changedate and changeuser, especially when using...
[font="Verdana"]Markus Bohse[/font]
August 31, 2007 at 6:46 am
Rob,
the query is fine and what your colleague told you is nonsense. I'm pretty sure that if you use Profiler and run a trace you will see the query completes...
[font="Verdana"]Markus Bohse[/font]
August 31, 2007 at 6:42 am
Sorin,
DBCC TRACEON(1118) will turn on the traceflag for just the current
connection, whereas including the flag as a startup parameter will apply it
to ALL connections.
Anyway I'm not sure I would use...
[font="Verdana"]Markus Bohse[/font]
August 31, 2007 at 5:32 am
Viewing 15 posts - 1,186 through 1,200 (of 1,653 total)