Viewing 15 posts - 91 through 105 (of 1,186 total)
http://www.support.microsoft.com should be able to help you find the differences. As far as which one you should load depends 100% on what YOU are going to be doing....
September 20, 2005 at 8:36 am
instead of having SQL code inside DTS package create a stored procedure you then call that instead and no need to modify DTS
September 20, 2005 at 8:03 am
Try
CASE Code_Field WHEN 1 THEN Value + 100 ELSE Value - 100 END AS Calculated_Value
September 20, 2005 at 6:11 am
What you can do is either
A. Build 3 different queries and then run whichever one the customer selected. Pro cuts down execution plan. Con multiple places to make same change
B. ...
September 19, 2005 at 1:22 pm
In addition to Noel's response: Is there data involved? Is this Production? Is this acceptable from your IS security team's persepective? Was this checked to ensure that virus/worms/other nasty stuff...
September 19, 2005 at 1:17 pm
Not recommended but another approach
SELECT SO.[name], SC.colorder, SC.[name]
FROM (SELECT [id], [name] FROM sysobjects WHERE xtype = 'U') SO
INNER JOIN syscolumns SC ON SO.[id] = SC.[id]
WHERE SO.[name] = 'YourTableNameHere'
ORDER...
September 19, 2005 at 6:33 am
Dougiii,
If you add Company as part of the SELECT TOP 1 for returning data you would get one item per Company. I generally do not hand ALL the code...
September 16, 2005 at 3:55 pm
Why not use a derived table to join to? IE... INNER JOIN (SELECT TOP 1 stuff from CompanyContact) CNTCTS and
September 16, 2005 at 8:10 am
Short answer is no. Once they roll off they are gone
September 16, 2005 at 8:07 am
You are trying to skin the dead cat of getting yesterday the hard way. Why not use something like
BETWEEN DATEADD(D, -1, CONVERT(CHAR(10), GETDATE(), 101)) AND CONVERT(CHAR(10), GETDATE(), 101)
Yes I know...
September 16, 2005 at 5:35 am
The way we do it here:
We all have our own web servers (on laptop) and connect to the same DB on a test server. We all ID what we are...
September 15, 2005 at 9:10 am
Try using QA for the View. Granted this is not a GUI but is a better place to perform development. This way you can specify INNER JOIN, LEFT|RIGHT JOIN etc..
September 15, 2005 at 9:07 am
I guess that I am being a little dense today. IF you ALREADY have grouping already established WHAT is the purpose of "making up" GROUP 1, 2, etc... when based...
September 14, 2005 at 10:37 am
I know it's early but (my upfront way of saying this may be crazy) but...
1. I know that tempdb is re-created everytime that SQL is restarted.
2. Doesn't it use model...
September 14, 2005 at 6:22 am
Viewing 15 posts - 91 through 105 (of 1,186 total)