Viewing 15 posts - 12,661 through 12,675 (of 13,465 total)
i have this procedure that i use; sorry i don't know the source of where i got it: this lists all servers on the network, you'd then need to query...
March 6, 2007 at 10:33 am
thanks Jeff I should have thought of that...he never said "procedure" so i assumed he was talking about ad hoc queries.
March 6, 2007 at 6:24 am
yes... if you select @@version, you would most likely see this:
Microsoft SQL Server 2000 - 8.00.2039 (Intel X86)
May 3 2005 23:18:38
Copyright (c) 1988-2003 Microsoft Corporation
Enterprise Edition on...
March 5, 2007 at 8:34 pm
I might be mis-understanding the question, but...
if you are re-using the same view name, and recreating it with different SELECT statements, then you should be able to use the command...
March 5, 2007 at 12:05 pm
similar issues here that Steve reported;
we started using strongly typed data sets, and found issues when the underlying structure changed...if we added a column to a table, for example, the...
March 5, 2007 at 11:58 am
there's a difference between the Parse Query Function and the Execute Query;
Parse Query (the check mark button) validates the query for syntax violations...it does not actually check if the objects...
March 5, 2007 at 11:08 am
because your WHERE statements affect different records, you can't merge them together into the SAME SQL
there is no guarantee that the data found would be the same rows, and would...
March 2, 2007 at 11:12 am
I'm sure Aaron is right...it calls the extended stored procedure, which in turn queries the registry for the specific values in question...that way, for example, a service pack or Hot...
March 2, 2007 at 6:11 am
here's an example: you need to decide what to do with columns that have multiple or no commas, but here you go:
create table QUADTEST(namefield varchar(60) )
insert into QUADTEST(namefield) VALUES('Noblesville,Fishers')
insert into...
March 1, 2007 at 9:34 am
if you can, redesign your data storage... you should use a date time filed to store the date and the time together. if you need them separate, you can always...
February 27, 2007 at 2:54 pm
you would want to deploy the SQL Native Client drivers with your application. you would not need anything else.
here's what MS says: basically they give a reditributable sqlncli.msi file, and...
February 27, 2007 at 1:50 pm
what is the specific error message you get for error -271; i googled it and couldn't find an example.
ok...you said you were loading the data into a data table. when...
February 26, 2007 at 11:35 am
changing collation can be a big project because it's in so many places:
at the server level, at the database level, and separately for each column of type text/ntext/char/nchar/varchar/nvarchar/
here's a script...
February 23, 2007 at 3:10 pm
i believe your code is trying to update the calculated field, maybe by trying to update it's current value with the same value. it might be automatic. make sure the...
February 23, 2007 at 1:36 pm
i've seen this many times ; it has to do with the default database for the login in question...change the default login's database from whatever it is now (probably master)...
February 22, 2007 at 2:39 pm
Viewing 15 posts - 12,661 through 12,675 (of 13,465 total)