Viewing 15 posts - 2,851 through 2,865 (of 5,588 total)
I couldn't figure out a way to modify Lutz's method to work correctly, so here is the Quirky Update method that he mentioned.
You MUST follow ALL of the rules...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 14, 2010 at 7:55 pm
Check out the ForEach Loop Container.
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 14, 2010 at 7:29 pm
It does not shrink the file; it marks the areas in it as available for reuse. If you're taking regular transaction log backups, it should grow to a point, and...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 14, 2010 at 7:28 pm
Lutz - looks great... except this is a SQL 7/2000 forum.
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 14, 2010 at 7:25 pm
While technically not load balancing, here is an article on load distribution. I think that this is about as close as what you're likely to achieve with the current product.
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 14, 2010 at 7:20 pm
GilaMonster (10/14/2010)
WayneS (10/14/2010)
Hate to bring this up, but does this mean that you had a better day at work today?
Wasn't at client today. Only there 3 days a week (more...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 14, 2010 at 7:15 pm
Here's some T-SQL code to convert a number into a corresponding letter. It should be relatively straightforward to convert into VB/C+ for code in Reporting Services:
DECLARE @page int,
...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 14, 2010 at 2:00 pm
GilaMonster (10/14/2010)
WayneS (10/14/2010)
How'd you do that???
Fast typing. 🙂
Anyway, you posted a very nice link for it... I didn't have it handy (haven't added it to my clippings yet!)
You haven't...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 14, 2010 at 1:46 pm
GilaMonster (10/14/2010)
WayneS (10/14/2010)
LutzM (10/14/2010)
bitbucket-25253 (10/14/2010)
Is Mr Celko mellowing? Admitting there is something he does NOT know, or has his character drastically changed?http://www.sqlservercentral.com/Forums/Topic1002440-1292-2.aspx
Question: How many false statements can you find...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 14, 2010 at 1:31 pm
Have you checked out this link? It might provide some help to you.
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 14, 2010 at 1:25 pm
LutzM (10/14/2010)
bitbucket-25253 (10/14/2010)
Is Mr Celko mellowing? Admitting there is something he does NOT know, or has his character drastically changed?http://www.sqlservercentral.com/Forums/Topic1002440-1292-2.aspx
Question: How many false statements can you find in his...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 14, 2010 at 1:18 pm
CELKO (10/14/2010)
1) Declare a table variable in the Outside procedure
2) Use the Inside procedure to...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 14, 2010 at 1:15 pm
So, is this getting you your desired results?
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 14, 2010 at 12:12 pm
One of these should get you going down the right track.
if OBJECT_ID('tempdb..#Documents') IS NOT NULL DROP TABLE #Documents;
CREATE TABLE #Documents (document_id int PRIMARY KEY CLUSTERED);
INSERT INTO #Documents
SELECT 1 UNION ALL
SELECT...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 14, 2010 at 12:01 pm
This type of issue was recently solved on this forum. Please try this solution, and see if this solves it for you also.
Please let us know how this works for...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 14, 2010 at 9:27 am
Viewing 15 posts - 2,851 through 2,865 (of 5,588 total)