Viewing 15 posts - 91 through 105 (of 123 total)
Hi bryan,
I tried this with sql developer 2000 without any problem. I am afraid that the beer is no longer cold when it arives.
best regards,
Klaas-Jan
June 27, 2002 at 3:39 am
Hi,
declare @strTable varchar(100)
declare @strsql varchar(1000)
declare cur_del cursor
read_only
for select
O.[name] as tablename
from syscolumns C inner join sysobjects O on C.id=O.id
and O.type='U'
where C.[name]='ida'
open cur_del
fetch next from cur_del into @strTable
while @@fetch_status =...
June 27, 2002 at 3:07 am
Hi, ok so you want windows authentification with a password. I don't think that is possible. Maybe one of the guru's has found a way?
June 26, 2002 at 5:57 am
Hi,
if (select object_id('tempdb.dbo.#test'))
is not null
print 'test'
June 26, 2002 at 5:45 am
Right click the server and in properties you can select windows authentification or sql. When using sql you can check always promt for password.
June 26, 2002 at 5:27 am
You can use both ado.net and xpath queries. In ado.net you have more functionality.
June 25, 2002 at 3:58 am
select * from orders where shipregion is not null
June 25, 2002 at 3:34 am
Hi, what about wa in iis and have a sql user for connection from iis to the database. For vb or access applications we usualy make one sql login the...
June 24, 2002 at 8:32 am
Hi add a varchar field with different values and use a where clause to search a record. Also a join with a new table is bad for performance.
June 24, 2002 at 1:41 am
Hi i think you don't need the 3 part syntacs in the insirt into. in stead of FROM rmtdb.dbo.rmttbl you could just use rmttbl. You already have a openquery so...
June 24, 2002 at 1:10 am
Hi you can schedule the dts packages or put them in a job. If the filenames are dynamic you have to write some active scripting (there are samples on this...
June 24, 2002 at 12:32 am
Hi i found out that there is a problem with ado connecting to temp tables. Temp tables only exists in a connection. After the connection they are automaticly dropped. Somehow...
June 20, 2002 at 3:24 am
Hi, you where right i had asumed it worked for alter view as well. My excusses. If you assign create view rights to a user then he can alter the...
June 19, 2002 at 7:21 am
HI, according to bol for altering views the same permissions as the create view aply. You can give a user ( or a role) create view rights with:
grant create view...
June 19, 2002 at 4:59 am
Viewing 15 posts - 91 through 105 (of 123 total)