Viewing 15 posts - 6,886 through 6,900 (of 7,597 total)
Sean Lange (1/22/2013)
ScottPletcher (1/22/2013)
Sean Lange (1/22/2013)
GilaMonster (1/22/2013)
Sean Lange (1/22/2013)
ScottPletcher (1/22/2013)
DiverKas (1/22/2013)
2) Do NOT let your DBA's design the database.
3) Hire a...
January 22, 2013 at 4:44 pm
Sean Lange (1/22/2013)
GilaMonster (1/22/2013)
Sean Lange (1/22/2013)
ScottPletcher (1/22/2013)
DiverKas (1/22/2013)
2) Do NOT let your DBA's design the database.
3) Hire a Data Architect.
Just saying....
January 22, 2013 at 3:20 pm
DiverKas (1/22/2013)
2) Do NOT let your DBA's design the database.
3) Hire a Data Architect.
Just saying. The first 2 groups have...
January 22, 2013 at 11:15 am
You need to do something like that in the WHERE clause:
select
col1
,CAST(col2 AS datetime) as col2test
from #DateTest
where isdate(col2) = 1
January 21, 2013 at 3:46 pm
drew.allen (1/21/2013)
ScottPletcher (1/21/2013)
I guess...
January 21, 2013 at 3:43 pm
What you really need is someone that has experience doing it, period. This is not something that you can just "wing it".
If you have to do it with no...
January 21, 2013 at 3:13 pm
Huh? I don't see anywhere a "datetime" data type is specified, only varchar. I don't see why the code couldn't run fine as is.
I guess your actual...
January 21, 2013 at 2:46 pm
No, you should not have to; the db engine takes care of that itself.
From Books Online:
"
If the value inserted is larger than the current identity value for the table, SQL...
January 21, 2013 at 2:24 pm
INSERT INTO dbo.T1 ( ... )
SELECT t2.col1, t2.col2, ...
FROM dbo.T2 t2
LEFT OUTER JOIN dbo.T1 t1 ON
t1.Name = t2.Name
WHERE
t1.Name IS NULL --only include...
January 21, 2013 at 2:18 pm
The first is a datetime2 format, the second is a datetime format.
Try CASTing to datetime2 first, then CASTing that to datetime.
CAST(CAST(column_name AS datetime2) AS datetime)
January 17, 2013 at 1:19 pm
SELECT *
FROM <db_name>.sys.database_files
WHERE
type_desc <> 'LOG'
January 17, 2013 at 1:15 pm
DBA24 (1/17/2013)
I have a primary key on a column that is a unique identifier (width 32 char) and it is nonclustered. There are a lot of inserts, updates and...
January 17, 2013 at 1:04 pm
For that, I would use a function with PATINDEX to retain only the desired chars.
If performance is not an issue, you can use a scalar function.
I can give you a...
January 17, 2013 at 12:58 pm
Better yet, forget the dopey "cluster first by identity" and cluster the table the best way: that is THE most important thing for performance.
Based on what you've posted, it seems...
January 15, 2013 at 4:23 pm
As Lowell states, they're not really orphaned.
Extended properties that aren't explicitly subordinated to a db object apply to the db itself.
That is, if you add extended properties w/o specifying a...
January 15, 2013 at 3:39 pm
Viewing 15 posts - 6,886 through 6,900 (of 7,597 total)