Viewing 15 posts - 12,886 through 12,900 (of 13,445 total)
could it be related to the similar issue found here?:
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=110&messageid=110704
November 15, 2006 at 11:41 am
another similar source of data is here: nationalfile.zip
http://geonames.usgs.gov/domestic/download_data.htm
1.8 + million records in the text file, it's featurename/city/state/county along with latitude/longitude of different places/features in the US.
because it is a lot bigger file,...
November 15, 2006 at 11:36 am
here's one suggestion:
http://geonames.usgs.gov/fips55.html
that has some files that has every geographic place name in the US.(158K rows)
you can also find similar data for free by searching for "zipcode database (that...
November 15, 2006 at 8:52 am
the procedure you posted, procedure GE_Claim_Record_Counts, does not do any selects, therefor the data cannot be sorted.
do you mean when you do SELECT * FROM ClaimCounts, with NO ORDER BY...
November 14, 2006 at 2:44 pm
because you are not really sorting the results, but placing the results in a specific order, you have to do something like this:
SELECT * FROM ClaimCounts
ORDER BY CASE
WHEN...
November 14, 2006 at 2:33 pm
insert into TableA (Account,OutstandingLedger
select Account,OutstandingLedger=$0.0 from TableB
don't do an assign operation in the select;
simply SELECT Account,0.00 from TableB
November 13, 2006 at 6:27 am
you don't fiddle with image/binary fields at the SQL server level usually; you do it an an application level, like with VB, VB.NET, Delphi, whatever.
Here's the code as an example...
November 10, 2006 at 2:24 pm
AUTH is the command to send a username and password to the mail server in order to use the SMTP service; it's required, because otherwise the server is wide open...
November 10, 2006 at 1:45 pm
if a backup of a database was created on SERVER A, and Restored on SERVER B, you would find that behavior...all users in the db are "orphaned";
i'd guess that if...
November 10, 2006 at 11:26 am
the ports are actually saved in the registry, and not in the database; that's because a service advertises the server instance where the databases reside, so the OS needs the...
November 10, 2006 at 11:18 am
since he posted to this forum, I kind of assumed he was talking about SQL 2000; I've got an instance of 2005 as well, but I haven't used it enought...
November 10, 2006 at 9:14 am
I'd venture a guess that one of the fields in the insert statement is receiving data that is longer than the field; for example if QuikJournal was defined as 200...
November 10, 2006 at 6:28 am
ISQLW accepts command line parameters. start>>Run isqlw /? will give you the list; then simply create a shortcut like isqlw.exe -s[localhost] -dmaster -Usa -Ppassword
November 10, 2006 at 6:17 am
instead of comma delimited, can you use INSERT INTO TABLEXXX instead?
if you can,Narayana Vyas Kondreddi has an excellent procedure to do that that he has shared: http://vyaskn.tripod.com/code.htm#inserts
November 9, 2006 at 2:12 pm
yes; my original post about sp_MSdependencies is the solution;
create table #Hierarchy (
objectType int,
objectName varchar(50),
objectOwner varchar(50),
CreationOrder int,
IsSchemaBound int)
insert into #Hierarchy (objectType,objectName,objectOwner,CreationOrder)
EXEC sp_msdependencies @intrans = 1
select * from #Hierarchy
update #Hierarchy set...
November 9, 2006 at 1:40 pm
Viewing 15 posts - 12,886 through 12,900 (of 13,445 total)