Forum: MS SQL Oct 16th, 2008 |
| Replies: 2 Views: 522 If u can have down time for the current database then try detach and attach
it will be easy and fast |
Forum: MS SQL Oct 14th, 2008 |
| Replies: 3 Views: 993 |
Forum: MS SQL Oct 1st, 2008 |
| Replies: 0 Views: 881 Say we have a table with 1000 rows
and there is no column which can identify a row(i mean no Identity or unique column)
now if we want to select a set of rows from this table how can we do that?... |
Forum: MS SQL Jun 30th, 2008 |
| Replies: 2 Views: 761 change the query from where class and see
FROM dbo.AccountTypes
INNER JOIN dbo.Users AS c ON dbo.AccountTypes.AccountIndex = c.AccountIndex
INNER JOIN dbo.BillingTransactions ON c.UserIndex... |
Forum: MS SQL Jun 30th, 2008 |
| Replies: 2 Views: 1,572 DB mirroring means what ever changed you do on primary DB will also get applied on Mirror Databases
that includes DB structure and data |
Forum: MS SQL Jun 30th, 2008 |
| Replies: 2 Views: 3,424 ID_short is a truncated version of ID_Long
say if ID_short has limited number of characters,then u can use
ID_short=substring(id_Long,X,Y)
or
ID_short=left/right(id_Long,X) |
Forum: MS SQL Jun 30th, 2008 |
| Replies: 3 Views: 2,140 Hey,
i didn't get you but from what i understood
don't u think these 4 statements are not similar
FILENAME LIKE ''%'+ @FILENAMETEXT +'%''
FILENAME LIKE '+ @FILENAMETEXT +'%''
... |