Viewing 15 posts - 17,296 through 17,310 (of 39,834 total)
As far as the conversion, you need a valid date, no matter what the format. If there is '00000', this isn't remotely valid.
What you can do is look for...
December 13, 2010 at 9:25 am
Only for convention. These are just file names and extensions, no relation to how SQL Server uses the files.
December 13, 2010 at 9:23 am
Your description is not clear about what you are looking for. What dependencies? What are you expecting the stored procedure to do?
December 13, 2010 at 9:14 am
What does filter mean? Are you looking to return this in a report or delete the data?
If duplicates, the distinct keyword can help you in a query to only show...
December 13, 2010 at 9:13 am
I believe the limited information for these is sysobjects in SQL 2000. There were many fewer system views in SQL 2000.
Moved to SQL 2000
December 13, 2010 at 9:11 am
I would use two roles here. One to read only from old tables, one to allow DDL activities.
If someone can create tables, they will be able to read/write from...
December 13, 2010 at 9:09 am
I believe that you would need to use dynamic SQL, to create the database.
declare @cmd varchar(max)
select @cmd = ' create table ' + @newdb + '.dbo.mytable (myid int)'
exec (@cmd)
December 13, 2010 at 9:07 am
Here's the bigint doc. You'd need to compare it to the Oracle documentation
December 13, 2010 at 9:05 am
If you get a PK error, then you have a PK update occurring.
What I would do is change this to a SELECT, and pull out the PK columns from...
December 13, 2010 at 8:48 am
Roy Ernest (12/13/2010)
Brandie Tarvin (12/13/2010)
You'd think he...
December 13, 2010 at 8:43 am
Tom.Thomson (12/12/2010)
Steve Jones - SSC Editor (12/11/2010)
Tom.Thomson (12/11/2010)
Celko's been at it again, and Gus's response http://www.sqlservercentral.com/Forums/FindPost1032150.aspx is unfair to monkeys.Excellent response from Lowell and Gus.
Tom, new avatar?
Yes, it changes now...
December 12, 2010 at 11:35 am
Tom.Thomson (12/11/2010)
Celko's been at it again, and Gus's response http://www.sqlservercentral.com/Forums/FindPost1032150.aspx is unfair to monkeys.
Excellent response from Lowell and Gus.
Tom, new avatar?
December 11, 2010 at 6:19 pm
I've used them, often as a base maintenance setup for systems that aren't stressed or critical. They have worked fine.
However when I need finer control, I tend to use custom...
December 11, 2010 at 6:16 pm
Craig Farrell (12/10/2010)
Steve Jones - SSC Editor (12/10/2010)
Craig Farrell (12/10/2010)
I'm failing to see the problem with this... I'd purposely go out of my way to wander through said lounge on...
December 10, 2010 at 4:27 pm
Jack Corbett (12/10/2010)
I understand both the fact that's it's not a highlight and, especially, the travel part. I just want to encourage everyone to give it a shot as...
December 10, 2010 at 3:14 pm
Viewing 15 posts - 17,296 through 17,310 (of 39,834 total)