Viewing 15 posts - 1 through 15 (of 121 total)
SkyMac (7/21/2013)
July 22, 2013 at 1:05 pm
Intersect is your friend.
Best answer yet ChrisM, provided he is on a version that supports it.
July 18, 2013 at 7:35 am
GilaMonster (6/19/2013)
bslchennai (6/19/2013)
can we use WITH(NOLOCK) option in select queries for these tables. how it will work.
Will the users be happy if the data that the queries return is...
June 21, 2013 at 8:23 am
There are some business and potentially legal reasons behind the decision. I have not personally used partitioning but I know what it is and I'll brush up on the topic...
June 21, 2013 at 6:36 am
William Plourde (6/20/2013)
So a person could move from db A, to B to C to D etc?
Yep, that is correct. Assuming 6 dbs out in the future. A person (and...
June 20, 2013 at 1:49 pm
mayurkb (6/19/2013)
June 19, 2013 at 7:38 am
free_mascot (6/18/2013)
June 18, 2013 at 1:40 pm
mo7amed.ashraf (6/18/2013)
Try This:
ALTER DATABASE EmpDataBase REBUILD LOG ON (NAME=$DatabaseName$,FILENAME=N'$Path\DatabaseName.ldf$')
GO
DBCC CHECKDB
ALTER DATABASE $DatabaseName$ SET MULTI_USER
GO
Necro post much? Its over a year old this thread.
June 18, 2013 at 6:30 am
kk.86manu (6/18/2013)
If there are no performance difference between a view and querying from a fact table then What are the advantages of creating views in...
June 18, 2013 at 6:26 am
I tend to create 3 tables for this excercise. The first table defines the "Account". A non data related PK, first name, last name. Real simple stuff...
June 17, 2013 at 12:29 pm
I would also add, that depending on a lot of variables like size of the field, number of rows, density etc, Full Text Search (FTS) might be considered as well.
June 12, 2013 at 10:20 am
Assuming you have down time, my suggestion would be:
Merge all your tables into one table with no constraint, with an additional column indicating the source database/table it came from. ...
June 5, 2013 at 12:34 pm
adonetok (4/25/2013)
There is a table Order in which one filed [Notes] as text data type.How to search a partial text such as "ordered on 10/02/2012" in the field [Notes]?
If this...
April 26, 2013 at 11:38 am
Lynn Pettis (4/15/2013)
DiverKas (4/15/2013)
One thing to bear in mind, the Generate Script does NOT include any column COLLATION settings. These still have to be set manually.
Not true, using advanced...
April 15, 2013 at 3:04 pm
One thing to bear in mind, the Generate Script does NOT include any column COLLATION settings. These still have to be set manually.
April 15, 2013 at 1:09 pm
Viewing 15 posts - 1 through 15 (of 121 total)