Viewing 15 posts - 6,436 through 6,450 (of 9,643 total)
In SQL Server 2005/2008 you should be using varchar/nvarchar(max) not TEXT/NTEXT.
Basically you "have more than" 8060 bytes on the row because SQL Server does not store TEXT data in the...
December 30, 2008 at 1:19 am
Start with BOL (Books on Line) and see if you can find a SQL Administration class somewhere nearby and get in it.
December 30, 2008 at 1:12 am
Yousaf Khan (12/30/2008)
...
December 30, 2008 at 1:11 am
sunandas (12/30/2008)
I want to cleanup the table.As per my application we need to cleanup the table when the database size is increased.
Does this mean you don't need any of the...
December 30, 2008 at 1:04 am
Do you want only rows that match one of the dates exactly or rows with dates between the 2 dates?
You can modify the code I provided in my previous post...
December 30, 2008 at 1:00 am
This is basically a duplicate post. Please place answers in this thread, http://www.sqlservercentral.com/Forums/Topic627035-146-1.aspx.
December 30, 2008 at 12:59 am
If you are testing the Linked Server it is attempting to connect using your security Principal, not NT AUTHORITY\SYSTEM. So you either need to add your local login to...
December 30, 2008 at 12:56 am
One thing that is inconsistent in your question is that you have defined Cat1_ID and Cat2_ID as int in your table definition and then show character values in the example...
December 30, 2008 at 12:49 am
Jeff Moden (12/30/2008)
http://www.sqlservercentral.com/articles/SSIS/64766/
All I can say is "Good Grief"... it took this person...
December 30, 2008 at 12:36 am
You actually have 3 options to do this:
1. Use your Lookup and Conditional Split and use an Ole DB Command Task to do the updates. You would need...
December 30, 2008 at 12:14 am
Jeff Moden (12/29/2008)
December 30, 2008 at 12:07 am
Jay Sapani (12/29/2008)
Select * From OpenRowset('MSADSQL','Driver={Microsoft dBase Driver (*.dbf)};SourceType=dbf','Select * From C:\MyApp\MyTest.Dbf')
The Command Runs Perfect
But
Select * From OpenRowset('MSADSQL','Driver={Microsoft dBase...
December 29, 2008 at 11:45 pm
It sounds like there has been some change to printer settings and that the problem is on the .NET side and not the Reporting Services side, since the report is...
December 29, 2008 at 4:55 pm
I don't see a way to get that information passed along within the SSIS process. You may need to use a script component and set a variable with the...
December 29, 2008 at 4:22 pm
Viewing 15 posts - 6,436 through 6,450 (of 9,643 total)