Viewing 15 posts - 4,246 through 4,260 (of 9,643 total)
Silverfox (9/11/2009)
September 11, 2009 at 6:41 am
Business Intelligence Development Studio, usually referred to as BIDS, is a slimmed down version of Visual Studio that comes with the SQL Server install (client components) which is used for...
September 10, 2009 at 5:15 am
Adam Machanic (9/9/2009)
Paul White (9/9/2009)
How can I boil the perfect egg?
This one I can actually answer 😀
Put the eggs in the pan with cold, salted water
Bring to a boil
Immediately upon...
September 9, 2009 at 9:30 am
Ken,
I think the original point of this thread was that it seems like people aren't even putting the effort in to find the answer themselves, but are using forums like...
September 9, 2009 at 8:29 am
Have you verified that Named Pipes is enabled on the SQL Server using SQL Server Configuration Manager? You may need to force it to use TCP. See this...
September 9, 2009 at 7:24 am
I believe you need to use some javascript and url access to the report in the jump to url. See this blog post: http://blog-mstechnology.blogspot.com/2009/07/provide-hyperlink-to-open-in-new-window.html
September 9, 2009 at 7:17 am
You need to check the page_count for the indexes that are not being defragmented. If they only have a few pages the fragmentation will not be removed.
September 9, 2009 at 6:11 am
Look up the Data Conversion Task in SQL Server Books on Line (BOL).
September 9, 2009 at 5:58 am
No problem Paul, you just put me in good company.
September 8, 2009 at 7:15 pm
Sirish likely has the best answer for fixing currently incorrect data, the real issue is to fix the data entry application.
Another option in SQL Server if the #...
September 8, 2009 at 1:48 pm
You also need to take into account collation. Are they all the same?
September 8, 2009 at 1:44 pm
Mohan Kumar (9/8/2009)
ensure a USE statement has been executed first.
I think that's your problem. Before running the rest of the script you need to change your database context...
September 8, 2009 at 1:39 pm
September 8, 2009 at 1:30 pm
Someone else may come up with a better solution but this works:
WITH ctePayments AS
(
SELECT
ClientNumber,
MAX(DateOfEvent) AS PaymentDate
FROM
Fact_Events AS FE
WHERE
FE.EventType IN (10, 11)
GROUP BY
FE.ClientNumber
),
cteNonPayments AS
(
SELECT
ROW_NUMBER() OVER(PARTITION BY FE.ClientNumber ORDER BY...
September 8, 2009 at 1:26 pm
Bitbucket has a good method. The other method that I would suggest is to use schema's as well as naming convention. It could be as simple as 1...
September 8, 2009 at 11:18 am
Viewing 15 posts - 4,246 through 4,260 (of 9,643 total)