Viewing 15 posts - 136 through 150 (of 207 total)
I don't believe you can pass a cursor as a parameter to a stored procedure. You can, however, pass the results of each loop of the cursor to another stored...
July 19, 2005 at 7:11 am
/Begin Rant
I cannot believe I was marked wrong for selecting C. I think anyone who answered C should be credited.
The question was "Which of...
July 15, 2005 at 6:10 am
I ran into a situation where I stumbled across the hyphen is translated as being a valid numeric value. (converting phone to strip out any non numeric characters in an ETL...
June 24, 2005 at 8:02 am
We use a combination of methods to track our ETL jobs. We have a custom logging table that logs the start and stop of the package by Lineage Full GUID....
June 14, 2005 at 7:01 am
In my opinion, If you are returning the data to an application that you have control of the source code, the front end UI should be doing a check for...
June 9, 2005 at 9:25 am
I'm not sure about product name, but the provider string should be something like this:
DRIVER={MySQL ODBC 3.51 Driver};SERVER=data.domain.com;PORT=3306;DATABASE=myDatabase; USER=myUsername;PASSWORD=myPassword;OPTION=3;
June 9, 2005 at 8:56 am
sushila's solution is probably the right way to go, but since you asked about scripting, here is the syntax.
DENY ALL ON tablename TO username
This will effectively deny all permissions on...
June 9, 2005 at 8:26 am
The data you have does not have a true duplicate. As mentioned before, there are duplicate ID's. You're unique key would be ID and First Name.
SELECT ID,FirstName,Country FROM @table...
June 8, 2005 at 7:34 am
Got me. I actually sent the article to the db team, then realized it was April 1st... then I scrolled to the bottom...
April 1, 2005 at 6:46 am
If you are concerned about NULLS for your variable, you can also do this:
SET @sql = 'SELECT TOP ' + IsNull(str(@number),'100 PERCENT') + ' * FROM table_name'
February 15, 2005 at 8:48 am
I've coded in both and honestly have noticed no benefit of one over the other. My preference is C#, but VB.NET works fine as well. Depends on the requirements of...
December 16, 2004 at 7:19 am
"Answer B is just plain wrong"
Answer B is only partially wrong. Primary Keys cannot be changed.
November 1, 2004 at 8:13 am
"There must be at least one column participating in the full-text index before it can be activated"
Just based on this sentence from BOL, answer A is not the correct answer.
October 28, 2004 at 7:14 am
I more have an issue with the answer reason than the answer. "I don't know why, but" is not an educational explanation of the answer. A better explanation would have...
October 22, 2004 at 7:15 am
Viewing 15 posts - 136 through 150 (of 207 total)