Viewing 15 posts - 316 through 330 (of 2,038 total)
Avoid using MAX + 1, really...! This way seems to work with one user in a test environment but it's no solution for production system. First issue always selecting MAX...
September 15, 2009 at 3:23 pm
September 15, 2009 at 3:16 pm
September 15, 2009 at 3:13 pm
Hi Phil
Can't reproduce this. Just tried the following SQL file:
PRINT 'Hello world';
GO
PRINT 'Hello new world';
GO
SELECT TOP(1) TABLE_NAME FROM INFORMATION_SCHEMA.TABLES;
GO
SELECT TOP(1) TABLE_NAME FROM INFORMATION_SCHEMA.COLUMNS;
GO
which returns all output by using "sqlcmd -i...
September 15, 2009 at 3:10 pm
Hi Michael
If your xml is not too large you can load it into a MemoryStream and use a HttpRequest to send it to your server. In other case you have...
September 15, 2009 at 2:47 pm
September 12, 2009 at 1:57 pm
I don't like cascade delete foreign keys because they can affect hidden huge data operations. My suggestion is an own, custom delete procedure.
September 12, 2009 at 1:45 pm
Hi (and welcome at SSC đŸ™‚ )
Two things I changed.
* Don't use nested JOINs when they are not needed. I moved your nested joins up to the FROM clause.
* Keep...
September 12, 2009 at 1:42 pm
Some suggestions
1.) Is .NET 3.5 installed on your server?
2.) Is your assembly compiled as "Any CPU" or "x64" assembly?
3.) Did you try to add System.ServiceModel.dll manually as assembly?
Here another thread...
September 9, 2009 at 3:01 pm
Sounds like a caching problem. CLR functions are implemented as "static" Method. If they use caches within those modules those caches will not be freed until SQL Server unloads the...
September 9, 2009 at 2:50 pm
Paul White (9/9/2009)
How can I boil the perfect egg?
I've no idea how to boil a perfect egg, but you should use a CLR-split when it's done
:hehe:
September 9, 2009 at 9:07 am
SQL Iron Chef (9/8/2009)
The world would store their data in flat text files or excel spreadsheets lol :hehe:
Wouldn't exist, too. CSV and Excel are just a lousy kind of a...
September 8, 2009 at 7:46 am
I don't think that this is a problem since the index tree is maintained without the data structure and points to the row, not to the column.
Probably here are storage...
September 8, 2009 at 5:17 am
PiMané (9/8/2009)
September 8, 2009 at 4:38 am
Marcin Gol [SQL Server MVP] (9/7/2009)
September 8, 2009 at 2:58 am
Viewing 15 posts - 316 through 330 (of 2,038 total)