Viewing 15 posts - 1 through 15 (of 94 total)
If you are running this off BIDS, right click on the Project properties > Configuration Properties > Debugging. Set the Run64BitRunTime to False.
If you are running it standalone using the...
December 11, 2012 at 10:00 pm
Hi Chandi,
Is the compatibility level set to 90? Or is it left as 80? This won't necessarily give you the problems that you are having, but some features of 2005...
August 11, 2008 at 1:17 am
Hi,
A primary key is a constraint, while a clustered index is an index.
A primary key makes sure that duplicate records are not inserted into the table. It provides entity...
July 15, 2008 at 1:16 am
Hi,
Is it possible to be a little more specific regarding the Lookup part? Are you looking up a table? And what sort of problem are you getting?
Regards,
Gogula
June 2, 2008 at 1:14 am
Try this:
SELECT DISTINCT
bg.bg_id [BugId],
bgAuditOpen.bg_added_dt [Open],
bgAuditClose.bg_added_dt [Close],
DATEDIFF(dd, bgAuditClose.bg_added_dt, bgAuditOpen.bg_added_dt) [NumberOfDays]
FROM
bugs bg
INNER JOIN Bug_Status_Audit bgAuditOpen ON bg.bg_id = bgAuditOpen.BgStAd_bg_id AND bgAuditOpen.BgStAd_New_st_id = 1
INNER JOIN Bug_Status_Audit bgAuditClose ON bg.bg_id = bgAuditClose.BgStAd_id AND bgAuditClose.BgStAd_New_st_id...
May 12, 2008 at 1:11 am
Hi,
Yes, it is possible to do so. In the 'Backup Database' dialog simply add both your devices to the 'Destination' section. The database will backup almost equally onto both the...
May 11, 2008 at 11:18 pm
Hi,
You could use the Script Wizard available with SQL Server. Just right-click on the database in Object Explorer, go to Tasks -> Generate Scripts... Follow the wizard and select the...
May 11, 2008 at 10:34 pm
Hi,
My suggestion would be to use an INSTEAD OF DELETE trigger. Write it in such a way, that it updates the record instead of deleting the record. And when it...
March 26, 2008 at 12:52 am
How about a trigger, to run on INSERT, UPDATE?
March 19, 2008 at 12:25 am
[font="Verdana"]A Unique index allows only one NULL value, so that values entered are unique (while indexing SQL Server compares NULL values as equal). It is by design.[/font]
March 19, 2008 at 12:11 am
... and it also returns the correct resultset before giving the error.
March 19, 2008 at 12:07 am
Even I, all these days thought you were one, until now (I mean until several days ago)... Congrats Steve, you more than deservedly deserve this!!!
January 13, 2008 at 9:03 pm
Try using the Execute Process Task component instead of the ActiveX script task.
January 8, 2008 at 3:07 am
Just enclose the word Foreign within box braces... [Foreign]
January 3, 2008 at 9:07 pm
Viewing 15 posts - 1 through 15 (of 94 total)