Viewing 15 posts - 541 through 555 (of 2,268 total)
I dont think it will be possible to do this directly from the backups, as you made changes this morning that you don't want restored you will not be...
March 15, 2011 at 9:22 am
In the screenshot it says <servername>/reportserver
Howevr you mentioned that this error happens when you deploy the report, you should be deploying to <servername>/reports
Check the deployment destinations in the...
March 15, 2011 at 9:17 am
I would still look at the execution plans to see if there is a difference, and then at least you can eliminate this from your investigation.
There is a possbility...
March 15, 2011 at 8:52 am
you really need to look at writing the procedure in a set based manner , you seem to have a very procedural approach to the code which is fine...
March 15, 2011 at 8:33 am
you will not be able to use a msgbox popup as this is server-side code and will not run at the client, you 'could' try something with Javascript -...
March 15, 2011 at 8:26 am
you could do it batches using a where clause limiting the PrimaryKey to groups in the delete statement.
I have to ask though, why can you not use Truncate it would...
March 15, 2011 at 7:57 am
deepak.a (3/15/2011)
thanks for your reply it is DNS problem i resolved it and also ima facing one more problem in safari ,UI disturbance.Like
calender control is not working in...
March 15, 2011 at 7:36 am
if the table is on it's own filegroup then yes , otherwise no
March 15, 2011 at 6:56 am
Were the statistics updated when transferring to the new server? as this could cause performance differnces
I would start by looking at the execution plans of the Ten Queries between...
March 15, 2011 at 6:45 am
That's true, I guess i would consider that to be a custom component, rather that a re-usable component.
Where a re-usable component would be a SSIS transformation...
March 15, 2011 at 6:06 am
Henrico Bekker (3/15/2011)
March 15, 2011 at 6:01 am
Sorry, It can't really be done in SSIS (Aside from cut+paste).
March 15, 2011 at 5:47 am
Instead of opening it on the other server, you could run the script from the command line using SQLCMD
March 14, 2011 at 7:02 am
Do you have SA access and control over the second server? if so you could do something like John has suggested..
otherwise i dont think there is anything you can...
March 11, 2011 at 8:44 am
Try using a capital 'C' in the where clause the for color column name
SELECT [ProductID]
,[Name]
,[ProductNumber]
,[Color]
,[ReorderPoint]
,[ListPrice]
,[ProductLine]
,[Class]
,[Style]
FROM [AdventureWorks].[Production].[Product]
where [AdventureWorks].[Production].[Product].[Color] like 'black%'
It would appear that you have the database set to use...
March 9, 2011 at 12:15 pm
Viewing 15 posts - 541 through 555 (of 2,268 total)