Viewing 15 posts - 1,651 through 1,665 (of 1,838 total)
I agree with Andrew. Maybe full-text search would be a better fit for your situation?
December 4, 2008 at 9:10 am
Deciding on being a production DBA or development DBA will probably depend on your personal preference and what type of person you are. Yes they both have simmilar responsibilities...
December 4, 2008 at 8:56 am
If you're asking us if these are good interview questions to ask someone you're going to hire, I'd suggest some rewording and re-ordering:
1. How many processors can a SQL Server...
December 4, 2008 at 8:20 am
krayknot (12/3/2008)
Breach of security is mandatory as only this lead to the improvement in the security practices.
Are you saying that having the instance service account access files is a breach...
December 4, 2008 at 7:39 am
SQL Server Express can only be a subscriber, not a publisher or distributor. If you need this, you'd have to build your own method of copying the data from...
December 3, 2008 at 8:26 am
Probably a better explanation of it than I could give is in this article:
http://www.sqlservercentral.com/articles/TSQL/62867/
You could set up your tally table in a couple of different ways, but if possible I'd...
December 2, 2008 at 11:47 am
Sudheer (12/2/2008)
I dont have any idea wat this SP doesexec sp_addextendedproc N'xp_varbintohexstr', N'xprepl.dll'
once the DLL is in the \Binn directory, this statement esentially creates the interface between T-SQL and the...
December 2, 2008 at 11:35 am
Have you ever worked with a tally table before? I think using that, and left outer joining to a subquery where you count the activities per day. To...
December 2, 2008 at 11:25 am
Was this xp_varbintohexstr an extended stored procedure? You may need to copy the DLL into your 2005 MSSQL\Binn directory and re-register each procedure in that DLL using sp_addextendedproc.
December 2, 2008 at 11:10 am
GSquared (12/1/2008)
Instead of a trigger, would a unique index give you what you need?
That will depend if they want to allow multiple rows with NULL for itm for the same...
December 1, 2008 at 2:42 pm
OK, sorry for the confusion, I didn't realize you wouldn't know the desired pivoting values. I can think of two options offhand, either use ROW_NUMBER() to force the pivoting...
December 1, 2008 at 1:06 pm
Another contributing factor will be if the web server is on a different physical computer from the database server. If they are, you probably don't want all of that...
December 1, 2008 at 12:36 pm
Personally, I'd suggest learning how to use CASE statements or PIVOT to do this instead of using that stored procedure. A good article is at:
http://www.sqlservercentral.com/articles/T-SQL/63681/
Trying out the stored procedure...
December 1, 2008 at 11:27 am
I thought the only thing that prevented a KILL from working was if the session was calling an extended stored procedure, was the same session that issued the KILL, or...
December 1, 2008 at 7:14 am
OK, maybe this is a silly question, but in your subquery:
SELECT ali.ItemValue
FROM AttributeValues as av
INNER JOIN AttributeListItem as ali
...
November 26, 2008 at 3:15 pm
Viewing 15 posts - 1,651 through 1,665 (of 1,838 total)