Viewing 15 posts - 3,196 through 3,210 (of 6,394 total)
Well how do you plan to format the INT into the required format as a VARCHAR to convert to TIME?
That is why INT cannot convert to TIME.
December 4, 2012 at 6:36 am
Just convert direct from a VARCHAR value, but need to ensure it is of the correct formatting for it to convert, '5' will not convert to time.
December 4, 2012 at 6:24 am
is it every query or just certain queries
do you do index and statistic maintenance on all your databases
December 4, 2012 at 6:00 am
My bad, you cant change the table collation, that should of been the database level, to alter a table you can change column collations
Drop all indexes on any columns which...
December 4, 2012 at 5:02 am
numeric columns dont have a collation.
@memymasta
collation can be changed at the server, database or column level depending what you want to do
December 4, 2012 at 4:53 am
Yes, full backups do not affect the transaction log chain, so you can do as many full backups you want a day and can still recover from any of them...
December 4, 2012 at 3:47 am
Cliff Jones (12/3/2012)
Stuart Davies (12/1/2012)
GoonhillyHill Billy
Moonshine
December 3, 2012 at 8:16 am
Look at using openrowset and inserting into the table not the view passing in the parameter.
INSERT INTO myTable(ProjectID,FName)
SELECT @ProjectID, FName
FROM OPENROWSET(BULK N'C:\Text1.txt', .....)
GO
December 3, 2012 at 8:11 am
bubby (12/3/2012)
Microsoft SQL Server 2008 R2 (SP2) - 10.50.4000.0 (X64) Jun 28 2012 08:36:30 Copyright (c)...
December 3, 2012 at 7:57 am
Do not cross post it fragments replies
http://www.sqlservercentral.com/Forums/Topic1391939-1550-1.aspx
December 3, 2012 at 7:55 am
Sounds like you need to do some transaction log management.
What is the output of this query
select recovery_model_desc, log_reuse_wait_desc from sys.databases where name = 'testdb'
And some reading material
Managing Transaction Logs -...
December 3, 2012 at 5:44 am
Viewing 15 posts - 3,196 through 3,210 (of 6,394 total)