Viewing 15 posts - 6,706 through 6,720 (of 8,760 total)
An alternative solution which doesn't require any joining. It scales well for large sets but has a weakness of returning false positives although fairly unlikely with this type of data....
October 25, 2014 at 12:13 am
Quick thought, sys.partitions is probably the best option as it does not require dynamic sql or depreciated backward compatibility objects.
😎
October 24, 2014 at 10:32 am
Ville-Pekka Vahteala (10/24/2014)
Koen Verbeeck (10/24/2014)
GilaMonster (10/24/2014)
Koen Verbeeck (10/24/2014)
And I thought we had a language problem in Belgium.
At least you don't have 11 *official* languages.
Nope, only 3 and that's apparently already...
October 24, 2014 at 9:13 am
Cadavre (10/24/2014)
Eirikur Eiriksson (10/23/2014)
😎
; --terminator, not begininator 😛
WITH LAST_TABLE AS
(
SELECT TOP(1)
T.object_id
...
October 24, 2014 at 9:07 am
Koen Verbeeck (10/24/2014)
spaghettidba (10/23/2014)
Jack Corbett (10/23/2014)
spaghettidba (10/22/2014)
Stefan Krzywicki (10/22/2014)
Of course, regionalisms mean it could be called most anything.
For example: In most of the USA, a blended milk and...
October 24, 2014 at 1:08 am
Meatloaf (10/23/2014)
How is it possible to export this to a XML file? Do I need to use BCP and cmodify the code into a string?
There are quite few ways,...
October 23, 2014 at 10:33 pm
Quick solution, should get you passed this hurdle
😎
;WITH LAST_TABLE AS
(
SELECT TOP(1)
T.object_id
,T.is_ms_shipped
...
October 23, 2014 at 10:19 pm
Quick suggestion, search the sys.all_sql_modules definition
😎
SELECT
OBJECT_NAME(MO.object_id) AS OBJ_NAME
,OBJECT_SCHEMA_NAME(MO.object_id) AS OBJ_SCHEMA
,MO.definition
FROM sys.all_sql_modules MO
WHERE MO.object_id > 0
AND MO.definition LIKE '% TABLE...
October 22, 2014 at 1:40 pm
Quick example of a simple method, normally does the job but strictly speaking it is reversible although it would require a hash-table approach.
😎
USE tempdb;
GO
SET NOCOUNT ON;
DECLARE @SAMPLE_DATA TABLE
(
...
October 22, 2014 at 9:27 am
xsevensinzx (10/22/2014)
Jack Corbett (10/22/2014)
BWFC (10/22/2014)
October 22, 2014 at 9:09 am
Biank (10/21/2014)
So, if I take SQL log backup separately...
Out of curiosity, why would you want to do that?
😎
October 21, 2014 at 10:06 pm
rodrigo.carrasco.e (10/21/2014)
"the database can not be attached Because an error occurred while loading the log detach"
Any ideas, I have no backup. Please,...
October 21, 2014 at 10:00 pm
Quick thought, many file formats have a signature or a magical number at the start of the file which is unique for that format. There are quit few resources available...
October 21, 2014 at 9:50 pm
Luis Cazares (10/21/2014)
Eirikur Eiriksson (10/21/2014)
Ed Wagner (10/21/2014)
Luis Cazares (10/21/2014)
Eirikur Eiriksson (10/21/2014)
Ed Wagner (10/21/2014)
Eirikur Eiriksson (10/21/2014)
Luis Cazares (10/21/2014)
Eirikur Eiriksson (10/21/2014)
spaghettidba (10/21/2014)
Ed Wagner (10/21/2014)
October 21, 2014 at 2:16 pm
spaghettidba (10/21/2014)
This is one of my favourite Spaetzle recipes:
Pretty close to my favourite one, Spatzle di grano saraceno con panna e pancetta. Don't have a recipe link but the saraceno...
October 21, 2014 at 2:10 pm
Viewing 15 posts - 6,706 through 6,720 (of 8,760 total)