Viewing 15 posts - 16 through 30 (of 44 total)
chetanr.jain - have tested on sql 2005 through 2008.
can you be more specific on the error?
SQL_Quest-825434 - no reason, i'm sure temp tables will do equally well.
September 1, 2010 at 8:24 am
Thank you for clarifying , will be revisiting the only CLR i've written to see if i can benefit from this tip!
cheers
r
July 21, 2010 at 8:08 am
Hiya,
Can you clarify how you declared the variables for each function (for a .NET amateur)?
Which variables did you declare scope differently for?
Can you give an example of each?
...
July 21, 2010 at 4:37 am
Sorry for resurrecting an old thread.
Is there a page that explains the SSC points system anywhere?
r
June 22, 2010 at 2:59 am
I love schemas for 2 reasons
1) Organisation
Grouping tables as belonging together in a logical group.
For example from the AdventureWorks db > HumanResources.Employee , Person.Address , Sales.CreditCard.
2) Security
Permissions assigned at schema...
June 22, 2010 at 2:55 am
See my post at the bottom of this page
http://www.sqlservercentral.com/Forums/Topic401784-562-2.aspx
The script generates index statements and incorporates table schemas, file groups, drop statements and fill factor.
June 10, 2010 at 5:21 am
I've modified mainly to add schemas to table names, other modifications in comments section at top.
Hope this helps someone 😎
IF NOT EXISTS(SELECT 1 FROM INFORMATION_SCHEMA.SCHEMATA
WHERE SCHEMA_NAME = 'utils'
AND SCHEMA_OWNER...
June 10, 2010 at 4:56 am
Thank you very much for that Gail.
I've managed to add a second file to my PRIMARY file group.
Not very smart, I know.
How Can I remove this file? (Management Studio reports...
June 2, 2010 at 9:04 am
Only tested on sql 2005 & 2008, so that may be an issue.
The DBID() function with no argument returns the database id for the current db.
The script should be run...
April 29, 2010 at 8:21 am
I don't understand the problem you are trying to solve.
Is it a parameterization issue?
Ditto previous comment i.e what sql version have you found this to be an issue on?
How large...
April 28, 2010 at 12:52 am
Sometimes the simplest ideas are the best.
Brilliant script.
r
April 22, 2010 at 2:57 am
big thanks chaps, given me a lot to think about.
cheers
r 🙂
April 12, 2010 at 5:35 pm
thanks for your reply Stefan, the code runs super fast, though I think I need to understand HOW before I implement it!
cheers
r
April 12, 2010 at 9:26 am
just seen the other reply, yes it is performance i'm trying to achieve.
when you have a full data set, lookups using BETWEEN crawl to a halt.
thanks
r
April 12, 2010 at 6:31 am
Viewing 15 posts - 16 through 30 (of 44 total)