Viewing 15 posts - 451 through 465 (of 1,109 total)
zaher_akram (2/11/2008)
Is there any Version Of sql server that i can run on Linux . Or any third party tool that can make it possible to run...
February 11, 2008 at 2:36 am
alorenzini (2/8/2008)
SELECT ConsultantID
, Level
, Title
...
February 8, 2008 at 8:19 am
You could use the row_number() function, so in this case you would number the promotions for a particular person to a particular level, and ignore the first promotion to this...
February 8, 2008 at 7:53 am
You may want to look at the thread: http://www.sqlservercentral.com/Forums/Topic438574-360-1.aspx
Although it does not give you a way to find out the queries that the suggested missing indexes are based on, it...
February 8, 2008 at 7:26 am
JMSM (2/8/2008)
Hi,...
One other question, how can i send the output of one date in the following format (DD/MM/YYYY)? :sick:
Thanks and regards
JMSM
Concerning your second question, you can use the style...
February 8, 2008 at 3:41 am
JMSM (2/8/2008)
Can you tell me how can i get table(s) name from one column name that give me to put in a query?
The point is:
- They...
February 8, 2008 at 3:36 am
You can enable not sysadmin users to run xp_cmdshell by setting up a proxy account See: http://technet.microsoft.com/en-us/library/ms175046.aspx
Permission wise it will need CONTROL SERVER, so if this is not acceptable, you...
February 7, 2008 at 4:33 am
The primary key will use a clustered index, your temptable will most likely be only a heap.
Also, are you the only one accessing the table you are inserting data...
February 6, 2008 at 4:46 am
sayan ghosh (2/5/2008)
We have to give CREATE, ALTER and EXEC permissions for only the SPs that needs to be created for a particular DB.
It's like we've got a...
February 5, 2008 at 4:26 am
mjafar (2/5/2008)
So I have decided to do re indexing & defragmentation.
I have did shrinking of database.
Here first time I am doing...
February 5, 2008 at 4:23 am
mjafar (2/5/2008)
So I have decided to do re indexing & defragmentation.
I have did shrinking of database.
Here first time I am doing...
February 5, 2008 at 4:19 am
rosemary (2/5/2008)
Input
Data ...
February 5, 2008 at 4:06 am
Wayne Benhart (2/1/2008)
Can anyone help me on how to Encrypt a trigger and possibly give me an example code on how to do it?Thank you
Wayne
You could just use the "WITH...
February 1, 2008 at 8:46 am
poztme (2/1/2008)
sorry andrasmy mistake. I didnt notice the second query though
Cheers
-Jag
Not your fault, I've added it later (the title of your post was truncated so I did not see the...
February 1, 2008 at 7:36 am
Use the LIKE keyword:
select [Shop Name] from mytable where [Shop Name] like '[0-9]%'
for numbers, or
select [Shop Name] from mytable where [Shop Name] like '[^a-zA-Z]%'
for ones that do not start with...
February 1, 2008 at 7:27 am
Viewing 15 posts - 451 through 465 (of 1,109 total)