Viewing 15 posts - 31 through 45 (of 48 total)
GSquared (5/13/2008)
GilaMonster (5/13/2008)
May 13, 2008 at 6:00 pm
GilaMonster (5/13/2008)
May 13, 2008 at 5:58 pm
greats, thxs for the reply!
May 13, 2008 at 5:56 pm
I think should be hundreds thousand monthly? why?
May 13, 2008 at 8:34 am
Not 2.1 billions in one table . Column ID (with identity) seems to be overrflow (because it hit overrflow issue, thus i think it's deleted , not trucated)
this table is...
May 13, 2008 at 8:22 am
replication is used, but the data is more than 2,147,483,647 (size of int) less than several months (big int will be using), so will need something like partitioning to speed...
May 13, 2008 at 6:51 am
I also think about table partitioning in MSSQL 2005, by using date as partition (see my previous post here) But is that the actual purpose of table partitioning??
May 13, 2008 at 3:41 am
Maybe can try EncryptByKey if MSSQL 2005, if really want?
May 12, 2008 at 8:03 am
if there's no conversion, can try from MS Enterprise Manager(same for MSSQL 2005)? go to design mode, select the column want to change, you will find the "Save chnages to...
May 9, 2008 at 10:41 pm
From what I know, SQLCEDataAdapter has performance issue, it drains the memory fast. since you are using sql CE 3.0, why don't you use SqlCeResultSet Class . Here's a another...
April 16, 2008 at 10:50 pm
DO you think this: System.Data.Common Namespace is workable?
April 9, 2008 at 6:04 pm
Select name, Category =
CASE xType
WHEN 'P'THEN 'Stored procedure'
WHEN 'TR'THEN 'Trigger'
WHEN 'V'THEN 'View'
WHEN 'U'THEN 'User table'
WHEN 'TF'THEN 'Table function'
ELSE 'Not yet categorized'
...
April 6, 2008 at 1:24 am
Can try to format it instead of depend on Reginonal Setting or Server configuration?
http://sqlserver2000.databases.aspfaq.com/can-i-make-sql-server-format-dates-and-times-for-me.html
April 2, 2008 at 6:03 pm
Should be something like this (http://msdn2.microsoft.com/en-us/library/aa258235(SQL.80).aspx) ?
USE pubs
GO
SELECT Category =
CASE type
WHEN 'popular_comp'...
March 27, 2008 at 11:53 pm
Viewing 15 posts - 31 through 45 (of 48 total)