Viewing 15 posts - 5,536 through 5,550 (of 5,588 total)
A view would be pre-compiled; therefore it could potentially be faster than a query which would need to be compiled. In practice, you may not be able to perceive a...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
July 10, 2008 at 6:37 am
Good question!
But, even better, GREAT explanation of all of the answers. I wish that all of the QODs did the answers this way!
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
July 10, 2008 at 6:31 am
Or is there a better way to do this?
2 agents in one row is not normalized data. Split the agents out into a separate table, and you'll find that your...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
July 3, 2008 at 7:09 am
Resolution:
when setting the parameter specifically to null, do it as:
Param[0] = new ReportParameter("Section", new string[] {null});
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
June 24, 2008 at 7:02 am
I found the problem... it wasn't that it was too large of a "dataset" for sql to handle as XML.
In this report, we are literally building an XML string of...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
June 18, 2008 at 9:54 am
Add an extra row (detail or group as appropriate). Just don't put any fields in it. Watch out for the data wrapping across pages.
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
June 17, 2008 at 8:12 am
I like this. But if I'm reading this right, the logic is reversed.
Shouldn't it be:
Fields!Age.Value >= CInt(Parameter!AgeRange.Value / 1000) and Fields!Age.Value <= Parameters!AgeRange.Value Mod 1000?
the CInt(AgeRange/1000) returns 18; the...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
June 13, 2008 at 7:52 am
Do you happen to have an example of doing this from a report?
Michael Earl (6/12/2008)
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
June 12, 2008 at 7:27 am
Okay, I found it.
On the item that toggles the visibility, on IT'S visibility tab you can set it's initial appearance of the toggle icon to [+], [-], or use an...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
June 5, 2008 at 1:29 pm
If you want people to help you with this, I suggest you read:
http://www.sqlservercentral.com/articles/Best+Practices/61537/
Your post as is has way too many questions about the data structure to be able to answer...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
May 29, 2008 at 5:30 pm
Aswanth (5/29/2008)
i'm having One ListBox control in which I'm getting Data Dynamically.. I want to Insert the Selected data (or ALL DATA) from ListBox Control into...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
May 29, 2008 at 7:08 am
prasukj (5/29/2008)
i am Prasanna
I have a excel source (only one excel , having many sheets )
,, in that source we find many sheet, each sheet is having data
so i...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
May 29, 2008 at 6:49 am
Great article.
One of the things I've always said is that we are already working remotely on the databases... the database doesn't know if the user is in their office,...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
May 29, 2008 at 6:20 am
Well, it's now working. Didn't change a thing. Took a break, and when I came back to this, it's working.
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
May 28, 2008 at 1:41 pm
Gekko (5/28/2008)
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
May 28, 2008 at 10:07 am
Viewing 15 posts - 5,536 through 5,550 (of 5,588 total)