Viewing 15 posts - 12,181 through 12,195 (of 13,469 total)
ok, The command line you pasted does make it a little clearer...and I'm going to guess that the issue is still permissions;
hrggrouper.exe
-i D:\PCT_Warehouse\LoadFiles\GrouperFiles\AEGrouperTemp.csv <--input file i...
January 9, 2008 at 10:39 am
you could also do the same thing with a calculated column in Excel:
=IF(E3="N",B3 & " DECIMAL("&F3&","&G3&"),",B3 & " VARCHAR("&D3&"),")
that would return this for the fiurst column:
YPNO DECIMAL(8,0),
January 9, 2008 at 8:11 am
i just took what i thought were the relevant columns, pasted them in editPlus, and then ran some find and replace macros agaisnt it...I assumed AlphaNumeric columns were varchars,...
January 9, 2008 at 8:06 am
there's a similar thread where someone needed to generate the same kind of random sample...read matt Millers example here: http://www.sqlservercentral.com/Forums/Topic427826-338-2.aspx you'd change just the portion that did TOP 1000000...
January 9, 2008 at 7:29 am
looks like we'll need more info...can you post the actual contents of the bat file?
I've used xp_commandshell lots of times, and usually, if it doesn't come back it's due to...
January 9, 2008 at 7:20 am
glad you got it working Leonard; this is one of those things that adds to the toolbox, but you don't use too often.
I made this function to try and...
January 9, 2008 at 7:14 am
I tested this just now with the same example I had posted, but with 2005; I had to enable OLE witht he surface area tool first, of course.
It works on...
January 8, 2008 at 3:51 am
similarly, there is a SET command which rollsback automatically if an error occurs, so there's no need to explicitly check for @@errors:
create proc name
as
begin
SET XACT_ABORT ON
begin tran
update .....
update......
update......
update......
commit tran
end
January 4, 2008 at 11:31 am
if you care to use SQL's built in rounding, you can simply use the convert function:
select convert(decimal(10,3),108451.4587) results in 108451.459
so simply format the column in your view as convert(decimal(10,3),columnmname)
if you...
January 4, 2008 at 11:23 am
looks like you have some holes in your logic...let me try to explain.
typically, a julian date is the number of dasy since a certain start date.
select getdate(),convert(int,getdate())
results:
DATE: 2008-01-04...
January 4, 2008 at 10:13 am
here's the easiest way i know:
hold down shift, and right click on a .sql file.
select "Open With..Choose Program" from the context menu.
browse to the right folder, which is C:\Program...
January 3, 2008 at 10:22 am
you can't set a session/connection to use a certain type of collation...it's all in the database.
we run into this occasionally, where a client will have a default collation of case...
January 2, 2008 at 10:48 am
here's an example SQL: note that the function object_name takes a second paramter, dbid, only in SQL 2005.
Create Table #tmplocks (
spid int,
dbid int,
objid int,
indid int,
type varchar(30),
Resource varchar(30),
Mode varchar(30),
Status varchar(30) )
insert...
December 27, 2007 at 11:43 am
run the stored procedure sp_lock, and pay particular attention to two columns "Type" and "Mode"
exec sp_lock
a value of X for Mode means it is exclusively locked, and it...
December 27, 2007 at 11:33 am
a scenario like you describe depends on a few assumptions that you don't mention. Do you need the values so you can insert new records? you do know that you...
December 26, 2007 at 10:56 am
Viewing 15 posts - 12,181 through 12,195 (of 13,469 total)