Viewing 15 posts - 1,186 through 1,200 (of 1,655 total)
Johan,
the file you found is for the distribution database. It's not in use until you configure your server for replication, and even then it might not be used because you...
September 7, 2007 at 12:48 am
Not sure if someone made a script for something like this, but it's probably worth having a look at the scripts page. http://www.sqlservercentral.com/Scripts/
If you can't find one I would...
September 6, 2007 at 9:08 am
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...
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...
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...
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
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...
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...
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...
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...
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...
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
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...
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
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...
August 31, 2007 at 6:46 am
Viewing 15 posts - 1,186 through 1,200 (of 1,655 total)