Viewing 15 posts - 2,566 through 2,580 (of 5,588 total)
http://www.devarticles.com/c/a/Oracle/Datatypes-Used-in-Oracle-9i/1/
A NUMBER datatype with no parameters is set to its maximum size.
Edit: Found another site that says if precision isn't specify, then 38 is used.
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
November 3, 2010 at 10:13 am
See the attached code (having trouble posting from work). I'll copy the code into this message tonight when I get home.
DECLARE @test-2 TABLE (MyDate datetime);
INSERT INTO @test-2
SELECT '2010-06-24 18:19:00.000' UNION...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
November 3, 2010 at 10:05 am
I think Monsieur ColdCoffee's code can be simplified - I don't think that the first CTE is necessary if in the second one, we order by the Activity in the...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
November 3, 2010 at 9:52 am
Stefan Krzywicki (11/3/2010)
mbender (11/3/2010)
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
November 3, 2010 at 9:20 am
mbender (11/3/2010)
What does indexing do? None of our tables are indexed. By doing the Create Index, what will that do?
NONE of them??? wow...
The purpose of indexes is to allow...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
November 3, 2010 at 9:17 am
Column delimiters need to be unique in the file. If one of the columns allows commas, change to something else (like the |).
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
November 3, 2010 at 7:23 am
jamesn 89076 (11/2/2010)
How do you guys do the "xcopy/robocopy". Do you include it as apart of the Backup Agent job or do it schedule it...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
November 2, 2010 at 10:12 pm
In the query that retrieves the data, just concatenate them together:
SELECT CombinedColumn = StringCol1 + StringCol2
FROM YourTable;
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
November 2, 2010 at 10:03 pm
As far as code snippets go... is there anything particular that it's looking for? It's a royal PIA trying to post code sometimes. I've had times where I can't post...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
November 2, 2010 at 7:49 pm
CirquedeSQLeil (11/2/2010)
Do you use websense at work?
I don't... but Work uses websense at work. What do you know about this interaction between them?
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
November 2, 2010 at 6:10 pm
Just looking at the intro to that article, it looks like what I'm talking about.
I thing I'm interested in - I frequently end up giving a reporting user access to...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
November 2, 2010 at 6:06 pm
Thanks Jason - I occasionally have problems posting code - seems to be from work. I'd love to figure it out!
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
November 2, 2010 at 5:52 pm
Is this what you're looking for?
(Having issues posting code - it's in the attachment.) Code is now below.
-- sample data
DECLARE @EmployeeDetails TABLE (id int PRIMARY KEY CLUSTERED,
...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
November 2, 2010 at 3:22 pm
Does this do it?
WITH CTE AS
(
SELECT ID, clientID, enrolldate, exitDate, branchID,
RN = ROW_NUMBER() OVER (PARTITION BY clientID ORDER BY exitDate DESC)
FROM...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
November 2, 2010 at 2:48 pm
buddy__a (11/2/2010)
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
November 2, 2010 at 1:55 pm
Viewing 15 posts - 2,566 through 2,580 (of 5,588 total)