Viewing 15 posts - 16 through 30 (of 55 total)
first question is
do employee for example BBB should have access to "XYZ" and "PQR"?
October 18, 2013 at 4:16 am
First check permission on store where you getting file,
if you have permission try put N before files
@file_attachments = N'\\waccounting\ffwin\images\vendor\ap invoice\13085316.TIF;\\waccounting\ffwin\images\vendor\ap invoice\13085317.TIF;\\waccounting\ffwin\images\vendor\ap invoice\13085320.TIF;\\waccounting\ffwin\images\vendor\ap invoice\13085327.TIF;\\waccounting\ffwin\images\vendor\ap invoice\13085338.TIF;\\waccounting\ffwin\images\vendor\ap invoice\13085339.TIF;\\waccounting\ffwin\images\vendor\ap invoice\13085341.TIF;\\waccounting\ffwin\images\vendor\ap invoice\13085344.TIF;\\waccounting\ffwin\images\vendor\ap invoice\13085347.TIF;\\waccounting\ffwin\images\vendor\ap invoice\13085352.TIF;\\waccounting\ffwin\images\vendor\ap...
October 16, 2013 at 2:50 pm
Sean Lange (10/7/2013)
SrcName (10/7/2013)
alter procedure w AS
exec('ALTER TABLE t ADD x char(1)')
exec('UPDATE t set x = 1')
But you can run only once. next time...
October 8, 2013 at 12:39 am
you can make this on this way
alter procedure w AS
exec('ALTER TABLE t ADD x char(1)')
exec('UPDATE t set x = 1')
But you can run only once. next time will be error....
October 7, 2013 at 2:37 pm
view your connections String carefully
read some example from this site http://www.connectionstrings.com/sql-server-native-client-10-0-oledb-provider/
best would be to write on some vb forums
October 6, 2013 at 6:15 am
one of many ways:
if isnull(object_id('result'), 0 ) <> 0
drop table result
create table result ( state varchar(2), studentId varchar, marks varchar )
declare @db varchar(500)
DECLARE @index INT =0
DECLARE @N...
October 4, 2013 at 10:21 am
if the logic is like this then you may use RIGHT (not in where becouse there is performance problem)
you can try on this way:
select * from TABLE1 t join
( select...
October 4, 2013 at 9:38 am
parulprabu (10/3/2013)
SrcName (10/3/2013)
(
spid smallint ,
ecid smallint , ...
October 4, 2013 at 12:40 am
Sean Lange (10/3/2013)
SrcName (10/3/2013)
if you define constraint then you don't have situation for update,because there will be no rows with impaired restriction, unless you disable constraint.
???
I am curious how...
October 3, 2013 at 3:30 pm
if you define constraint then you don't have situation for update,
because there will be no rows with impaired restriction, unless you disable constraint.
October 3, 2013 at 1:35 pm
create table #temp
(
spid smallint ,
ecid smallint , ...
October 3, 2013 at 8:31 am
can you give us more detail about this problem.
sql error log, sql server entries from event viewer
October 3, 2013 at 4:42 am
that help many show when you have problem with using bcp.
Do you have privilege to save file on location where you want to save?
Do you try to add user name...
October 2, 2013 at 10:39 am
Viewing 15 posts - 16 through 30 (of 55 total)