Viewing 15 posts - 16 through 30 (of 236 total)
we resolved this is issue with the help of the OS people, there was an issue with the VM and the drive. once the server got rebooted the issue got...
July 24, 2013 at 8:21 am
I was trying to restore the master database but couldn't able to connect to sql server using sqlcmd and even when i use the single user mode flag. in this...
July 24, 2013 at 6:28 am
MY E Drive is working fine and i am able to access it and the files in the drive . i do have some user database on the server
July 24, 2013 at 6:16 am
Should have been back to BIDS instead of SSDTBI. we call simply BI Tool
July 19, 2013 at 5:00 am
What is there inthe dataflow? How are you handling error rows, are you writing them some where?Even there might be truncation of the data when converting from sql server to...
July 16, 2013 at 2:51 am
Good Question , even if we have the primary key and want to drop it, we need to disable the change tracking before we drop the constraint.
July 9, 2013 at 10:59 pm
are you looking for something like this
exec ('select @liststr = coalesce(@liststr+'+''''+','+''''+' ,'+''''+''''+') + quotename(column_name)
from '+ @server + '.'+ @db+ '.information_schema.columns where table_name = '+ ''''+ @table+'''')
July 7, 2013 at 10:43 pm
without taking server offline it is not possible to move the system db's to another location.
July 7, 2013 at 10:05 pm
you are @wrong forum, this is more of SQL thing
July 7, 2013 at 10:02 pm
There is a nice article on CDC from Pinal
i would recomend using of history table and some after triggers to use it in your db to track the...
July 1, 2013 at 3:37 am
what could be the better approach in this kind of situation , is there any better option than this
DECLARE @MoreColumns bit;
SET @MoreColumns = 1
Create table #table( id int )
IF @MoreColumns...
June 24, 2013 at 12:34 am
I am not sure if this could be sort of any help for you
June 18, 2013 at 12:41 am
Viewing 15 posts - 16 through 30 (of 236 total)