Viewing 15 posts - 3,646 through 3,660 (of 14,953 total)
When I have to deal with strings being converted to dates and times, I start from the left and work my way right, using Stuff.
Like:
DECLARE @X CHAR(14) = '20110420184518'
SELECT CONVERT(DATETIME,...
July 26, 2011 at 9:54 am
"No" to what? I asked an either/or question.
Do you not have any window open at all?
July 26, 2011 at 9:42 am
Something like this?
IF OBJECT_ID(N'tempdb..#T') IS NOT NULL
DROP TABLE #T ;
GO
USE ProofOfConcept ;
GO
CREATE TABLE #T
(ID INT IDENTITY
...
July 26, 2011 at 9:41 am
Do you have a regular connection window open (the text editor), or did you right-click an object and select "Edit" or something like that?
July 26, 2011 at 9:29 am
You could use Replace to replace spaces with new lines. Are you familiar with using Replace?
July 26, 2011 at 9:25 am
Most people who think they're bad are acting on old data (as Gail mentioned). They can be bad if the underlying tables routinely have schema changes, and you need...
July 26, 2011 at 9:24 am
You can't use the new SQL 2008 features in it, like Merge, Table Value Constructors, Table Variable Parameters, et al.
July 26, 2011 at 9:19 am
FTS will index all words. The issue with the thesaurus is that if you haven't told it that "AU = Gold = Aurum = Oro", it won't know that....
July 26, 2011 at 8:28 am
Leo.Miller (7/25/2011)
GSquared (7/25/2011)
halifaxdal (7/25/2011)
July 26, 2011 at 8:18 am
pwalter83 (7/26/2011)
steveb. (7/26/2011)
You can setup one-way transactional replication.Also I don't see how running an SSIS packages is any more secure..
this is really ridiculous, i specifically mentioned above that the...
July 26, 2011 at 8:10 am
Elliott Whitlow (7/25/2011)
Hey G, how about cross-server service broker queues?CEWII
It would be worth looking into, but he said they have a security policy that only SSIS can modify data on...
July 26, 2011 at 7:53 am
M.Kahn (7/26/2011)
Welsh Corgi (7/22/2011)
SVR (7/22/2011)
Can you give me options to crash in software world, and I will let the fire department take care of the physical crashes.
Yes, don't ask any...
July 26, 2011 at 7:49 am
The thing to keep in mind when comparing Access to SQL Server is that Access has all the same issues, but it hides them and tells you "Pay no attention...
July 26, 2011 at 7:44 am
Viewing 15 posts - 3,646 through 3,660 (of 14,953 total)