Viewing 15 posts - 2,416 through 2,430 (of 6,486 total)
I'd go one step further - you probably want to make TempDB plenty big (both on data and log files), so that you can avoid having to contend with auto-growth....
October 14, 2008 at 4:13 pm
mchristy (10/14/2008)
Loan amount = $10,000
Total length of loan = 60 months
where the Rate =...
October 14, 2008 at 4:04 pm
kumar99ms (10/14/2008)
hi hall'19:12:43 CDT 05/23/2007' this is event_date but it is in varchar datatype.
How can we convert varchar datatype to date time datatype any body plz give suggestion
You should look...
October 14, 2008 at 3:38 pm
Also - keep in mind that the second you put XML information into an XML data type, SQL Server will reorganize that data in any which way it feels like...
October 14, 2008 at 9:24 am
Since we're talking straight network issues at this point - you might care to make sure that your frame sizes are compatible all of the way through. LAN traffic...
October 14, 2008 at 9:17 am
declare @column_num int
declare @columnname varchar(max)
declare @tablename varchar(max)
set @column_num=2
set @columnname='';
set @tablename='MyTable'
select @columnname=@columnname+',['+column_name+']' from information_schema.columns
where table_name=@tablename and ordinal_position>=@column_num
declare @sql varchar(max)
set @sql='select '+substring(@columnname,2,len(@columnname))+' from '+@tablename
Print (@sql)
Exec(@sql)
October 14, 2008 at 9:08 am
Thanks for the feedback! I am glad that helped you.
(There is no way to mark a specific answer, so don't worry about hunting it down!)
October 13, 2008 at 10:10 pm
Jeff Moden (10/13/2008)
ayemya (10/13/2008)
I found a way to make it works. I have to close this question.
You should continue the question because you're still using a loop and a function...
October 13, 2008 at 9:30 pm
This got posted twice - answers should go over here:
http://www.sqlservercentral.com/Forums/Topic585181-1292-1.aspx
October 13, 2008 at 9:23 pm
Jeff Moden (10/13/2008)
October 13, 2008 at 9:21 pm
There is no updated virtual table - it's Inserted. That is more than likely what your problem is.
It's always a combination of Inserted and/or Deleted.
October 13, 2008 at 9:18 pm
Jeff Moden (10/10/2008)
rbarryyoung (10/10/2008)
October 13, 2008 at 10:27 am
bobhovious (10/12/2008)
October 12, 2008 at 9:01 pm
Why not build a client-side SSIS package, which takes the file name in as a parameter? You would still be able to access all of the .NET stuff from...
October 12, 2008 at 8:53 pm
Well - considering some of the hopes being hung on this thing - here's hoping they don't jump the gun. If it's as big of a product as it's...
October 12, 2008 at 8:06 pm
Viewing 15 posts - 2,416 through 2,430 (of 6,486 total)