Viewing 15 posts - 556 through 570 (of 691 total)
I would recommend that anyone who works with DATETIME read:
A) Tibor Karaszi's article on the subject:
http://www.karaszi.com/SQLServer/info_datetime.asp
and
B) Rick Snodgrass' book on tempoaral SQL, which can be downloaded in...
October 26, 2004 at 12:07 pm
You can't get it into a local variable for exactly the reasons you stated.
Can you post some more detail on what, exactly, you're trying to do (i.e. what you're parsing,...
October 26, 2004 at 12:05 pm
sp_helpfile will show you the files sizes.
October 26, 2004 at 12:02 pm
All it really requires, IMO, is a bit of discipline.
Script every object from your database and check it into VSS.
Any time you need to change an object, check out and...
October 26, 2004 at 10:51 am
What does "crashes" mean? Are you getting an error? Did you remember to update the new server to the latest service pack?
October 26, 2004 at 10:04 am
Well I have to admit, I haven't actually read it (or any others, for that matter) -- Some of the SQL Server MVPs said it was good in a thread...
October 26, 2004 at 9:56 am
Test it and tell us. You haven't posted sample data or queries so there's no way to answer that question... If the rowsize is greater than 8k, you won't...
October 26, 2004 at 9:52 am
How about posting the DDL for the real table?
What is it representing? Is it normalized? Can you split up the data in any way based on some business...
October 26, 2004 at 8:55 am
Maybe you should change your website to "lucky13" instead?
October 25, 2004 at 4:46 pm
Looks like it's time to change that
IDENTITY_INSERT is intended for sysadmin use when something goes wrong; I don't think there's a workaround to...
October 25, 2004 at 4:09 pm
Your question is pretty vague; so I'll turn it around. How are YOU doing it, and what problems are you having that prompted this post?
October 25, 2004 at 3:35 pm
What are you using IDENTITY_INSERT for? Why not just let the IDENTITY columns increment themselves?
October 25, 2004 at 3:33 pm
Jonathan,
SQL Server does not let you select from tables using ordinal positions. Try the following batch:
create table #tbl1 (cola char(1), colb char(1))
create table #tbl2 (cola char(1), colb char(1))
insert #tbl1
select...
October 25, 2004 at 2:35 pm
Viewing 15 posts - 556 through 570 (of 691 total)