Viewing 15 posts - 121 through 135 (of 1,654 total)
Dev (12/5/2011)
Please add following...
AND INSERTED.costprice != UPDATED. costprice
Since there is no table "updated" I assume you meant to use the following:
AND INSERTED.costprice != deleted.costprice
But a much better...
December 5, 2011 at 1:57 am
No you cannot restore/copy a SQL 2008 database on a 2005 system, no matter what you're compatibility level is. The reason is that the file structure is different.
The only way...
December 2, 2011 at 7:00 am
Someone else already pointed you to Rusano's blog, but I want to point you specifically to this one:
http://rusanu.com/2010/03/09/dealing-with-large-queues/
It describes just the kind of issue you're having.
November 28, 2011 at 6:05 am
Since I've never done a in-place upgrade of SSRS I can't say for sure if everything will keep working.
But here you should find all the information you need:
November 25, 2011 at 12:44 am
Ryan,
in order for you to be able to use the new features on your production server you need to upgrade the server to R2.
Also in case you create a...
November 24, 2011 at 1:00 am
I have upgrade to SQL 2008 from SQL 2000, privisouly there are some tables are created with schema name(hjbhatt). after upgradation I changed all the table names with default schema...
November 22, 2011 at 3:13 am
ananda.murugesan (11/22/2011)
due to this error Table & SP does not allowed with same name dbo.upload_sales.
Does this mean you have a table and a stored procedure with the same name?
Why...
November 22, 2011 at 2:42 am
ananda.murugesan (11/22/2011)
ALTER SCHEMA dbo TRANSFER hjbhatt.upload_sales
Msg 15530, Level 16, State 1, Line 1
The object with name "upload_sales" already exists.
select * from dbo.upload_sales
Msg 208,...
November 22, 2011 at 1:55 am
Performancewise I don't think there is any difference between append or overwrite. But if you want to automate your restore procedure I would advise to create a separate file for...
November 22, 2011 at 1:10 am
If you want to move an object to a different schema use this:
ALTER SCHEMA new_schema TRANSFER old_schema.object_name
November 22, 2011 at 12:56 am
In your code you GRANT VIEW SERVER STATE to Report but not to DMView. The procedure works on my system if you grant VIEW SERVER STATE to DMView.
November 21, 2011 at 2:26 am
I'm not sure if I understand your requirement correctly but something like this should work:
Select the font color for your textbox and enter an expression similar to this:
=IIF(Fields!Mod.Value<80,"Black","Red")
November 18, 2011 at 1:26 am
First you need to identify which two processes cause the deadlock. You can use profiler to trace the deadlock graph.
It's difficult to say how to solve this issue without knowing...
November 18, 2011 at 1:19 am
Also check what is the default schema for the user and if it exists.
November 18, 2011 at 1:08 am
GilaMonster (11/17/2011)
You either need to add that message to sys.messages, then you can call Raiserror...
November 17, 2011 at 5:32 am
Viewing 15 posts - 121 through 135 (of 1,654 total)