Viewing 15 posts - 466 through 480 (of 1,109 total)
Ratheesh.K.Nair (2/1/2008)
Please help to solve this issue.
...
February 1, 2008 at 5:25 am
Jim Russell (1/30/2008)
Well, so much for documentation;...
January 30, 2008 at 8:30 am
Hi Rav,
you were not specifying what should get the new value (just an expression that evaluates to the new value)
UPDATE ASCEND_FC_INSDESC
SET FC_CODE=STUFF(FC_CODE, 1, 1, '')
WHERE LEFT (FC_CODE, 1) = '0'
Regards,
...
January 30, 2008 at 8:24 am
This is a good example of bad table design. You should not store the role membership in a single column as a list. Is this something you could change?
If not,...
January 30, 2008 at 6:32 am
Please note that the sysobjects is no longer a system table on SQL Server 2005. These have been replaced with system views, so sysobjects is a system view, which is...
January 30, 2008 at 6:12 am
JMSM (1/30/2008)
Can you tell me how can i give permissions for the execution of the xp_cmdshell to one user without give the sysadmin permission. This problem appears because theres an...
January 30, 2008 at 5:28 am
Philip Horan (1/28/2008)
I take it I reverse the NOCHECK before re-importing the data?
Phil.
PS: Thanks...
January 28, 2008 at 6:21 am
Philip Horan (1/28/2008)
I launch Management Studio then connect to the Server (Server Name: My Server) using the sa account.
How would I ensure I am connected to a specific...
January 28, 2008 at 3:59 am
Philip Horan (1/28/2008)
Cannot find the object "Products" because it does not exist or you do not have...
January 28, 2008 at 3:20 am
Ido Amrani (1/28/2008)
HiI wonder what better to my data base case sensitive or case insensitive?
and what the criterions to decide?
thanks
Ido
Hi Ido,
in terms of object names using case sensitive collation ensures...
January 28, 2008 at 2:58 am
You have one (or more) tables with a foreign keys on them that reference the table you would like to delete from. You could either delete the values from those...
January 28, 2008 at 2:48 am
Igor Marchenko (1/23/2008)
I have just installed SQL 2008 (10.0.1057.4). For some reason, I do not see intellisense feature in SSMS. Is there something I need to do to...
January 25, 2008 at 6:07 am
Christian Buettner (1/23/2008)
could you please provide an example where TOP 1 speeds up the query?
I was always under the assumption that SQL Server would automatically TOP the query when...
January 24, 2008 at 1:46 am
antonio.collins (1/23/2008)
nugroho (1/22/2008)
Second Question:
SELECT * FROM Table1 WHERE (@S=1 AND CONTAINS(column1,'key1')) OR (@S=2 AND CONTAINS(column2,'key1')) OR (@S=3 AND CONTAINS(column3,'key1'))
Does SQL engine will search (CONTAINS) only in 1 column depending...
January 23, 2008 at 11:38 am
simon.letts (1/23/2008)
However what I need to do is have a trace run...
January 23, 2008 at 6:28 am
Viewing 15 posts - 466 through 480 (of 1,109 total)