Viewing 15 posts - 16 through 30 (of 59 total)
Do you have SQLCMD mode open for new querries?
I solved the intellisense issue by unticking the box in Tools--Options--Query Execution
September 28, 2012 at 3:32 am
Hi Gail,
Thanks for your suggestions. Checkdb is running OK now!!!!!! Without taking the instance down!!!!
Check these results:
CHECKDB found 0 allocation errors and 0 consistency errors in database 'master'
I've run DBCC...
January 21, 2009 at 8:04 am
Update:
I've restored last nights backup of master as a userdatabase and run DBCC CHECKDB ALLOW_DATA_LOSS.
This solves the consistency errors.(REPAIR_FAST and REPAIR_REBUILD didn't solve anything)
I can also reindex.
What's the best...
January 21, 2009 at 4:04 am
Hi thanks for your reply,
The master has already been restored from backup. Restoring an older backup (older than 2 weeks) is not an option, because of all the changes that...
January 21, 2009 at 2:29 am
The substring functio should be:
SUBSTRING(name,1,2) = "ab"
In a more general way the FINDSTRING function might be usefull:
FINDSTRING(name, "ab", 1) == 0
You can also use the LEFT function in this case.
September 1, 2008 at 4:34 am
Hi,
Try the following expression for the visibilty property of your "values" textbox:
=(NOT Inscope("NameOfRowGroup") AND NOT Inscope("NameOfColumnGroup"))
Change NameOfRowGroup and NameOfColumnGroup to the group names of your matrix.
July 15, 2008 at 2:54 am
Try the following expression:
=iif(Fields!Stat_Qty.Value = nothing, "-", iif(Fields!Stat_Qty.Value = 0, "-", Fields!Stat_Qty.Value))
July 14, 2008 at 4:04 am
Sorry that's 1 quote too many:
select replace(Starttime, '.', ':')
May 13, 2008 at 9:51 am
Rajesh,
You've said it! Use the "replace"-function:
select replace(Starttime', '.', ':')
May 13, 2008 at 9:48 am
Hans,
Drop the single quotes and use square brackets ([]) for the "file" column ( or use them for all columns)
May 13, 2008 at 9:40 am
Having a true datetime column would indeed be much easier. However assuming that shifts don't last more than 24 hours, you could calculate the working minutes using the following expression:
WorkingMinutes:...
May 13, 2008 at 4:26 am
May 9, 2008 at 10:07 am
Viewing 15 posts - 16 through 30 (of 59 total)