Viewing 14 posts - 1 through 14 (of 14 total)
You use IDENTITY which is a physical storage locator and not relational. You need to go back, throw this crap and get a real key. In the meantime, it...
December 22, 2010 at 3:11 pm
OK, i do it
One question about
Will that code (that use Tran) LOCK that tables until finish, ..
So until end or commit transaction, will no one put any record on this...
December 21, 2010 at 4:48 pm
put the previous sugestion in a single transaction, so others cannot insert invalid data
I don't understand you. What do you mean ..
December 21, 2010 at 10:58 am
Hello, I don't want to disable FK
Here' the DDL
TABLE1=====================================
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Forums.Categories.Threads](
[DomainId] [int] NOT NULL,
[ForumId] [int] NOT NULL,
[CategoryId] [int] NOT NULL,
[CreatorId] [int] NULL,
[ThreadId] [int] IDENTITY(1,1) NOT NULL,
[Deleted]...
December 21, 2010 at 10:40 am
Thanks, but the problems for FullText is that actually every day the table has more than 2 thousands of new records (every day).
It difficult to mantain
June 12, 2008 at 3:34 pm
Yeah, i will consider.
But a question.
Using Full-text, may not decrease performance ¿?
You think that with full-text the queries will be more faster ?
June 12, 2008 at 2:51 pm
As mentioned in http://www.simple-talk.com/sql/learn-sql...
in order to perform full text searching on a table you need to:
1) ..
2) Create a full text catalog in which to store full text...
May 8, 2008 at 1:07 pm
Thanks rbarryyoung
Just the key!
Just using % between words !
Thanks
May 5, 2008 at 4:00 pm
i RESOLVE USING
CAST ( REPLACE( CAST (@nDecimalWithCommaAsDecimalSeparator AS NVARCHAR),',','.') AS DECIMAL(16,4)
SO
SELECT (CAST ( REPLACE( CAST ('123,45' AS NVARCHAR),',','.') AS DECIMAL(16,4))
WILL RETURN
123.45
Beacuse performance If any knows beest way to...
April 29, 2008 at 3:03 am
THANKS I Resolve IT !!, ..
The CTE are on a SP (example SP_CTEOfClassifications)
I WRITE THE FOLLOWING CODE
FIRST I CREATE A TABLE
CREATE table TEMP_Classifications(all columns that retrieve the SP_CTEOfClassifications)
SECOND: USING INSERT...
April 26, 2008 at 3:24 pm
I will try, but its a very difficult Beacuse the Select Statement includes CTE
April 26, 2008 at 1:03 pm
Thanks but
I'm said that i cannot create or modify TABLES (not databases) for an existing database that i attach from a file (that come from another server).
OLD_SERVER: "MyDatabase" Ok all
NEW_SERVER:...
April 16, 2008 at 11:25 am
Thanks to all.
Finally i found the solutions, on a thirds urls that i found.
Thanks to GrassHopper and the other one. The GrassH Url's serves me a trick to found more...
April 12, 2008 at 10:28 am
Thanks, I will check on nexts hours ..
But as far as i search last 4 hours some related on inet, the PIVOT / UNPIVOT related sources was seems difficult to...
April 11, 2008 at 10:33 am
Viewing 14 posts - 1 through 14 (of 14 total)