Viewing 15 posts - 7,351 through 7,365 (of 13,460 total)
since you are using access, those are two different queries;
the GO statement is valid for SQL Server;
each of the two queries needs to be saved separately...been a while since i...
June 22, 2011 at 4:42 am
m.dodd (6/22/2011)
the depart time is generated when the visitor clicks the Out button on the access form (taken from the computers time)
the method of entry into a table wouldn't really...
June 22, 2011 at 4:32 am
moving the data more complex than it need to...
i don't see a need to move the data, other than it makes "sense" to someone (the data is different...
June 22, 2011 at 4:12 am
i've done this on the .NET side of things, after i've already loaded the data into a .NET DataTable.
from there, it's fairly easy to format the data into a string...
June 21, 2011 at 8:36 am
Duran (6/21/2011)
I'd imagine that somebody would have come across this before, I am trying to install SQL 2005 R2 (downloaded from MSDN) to install in the D drive, I specify...
June 21, 2011 at 6:16 am
nice job on posting details so we can follow along...but is there a question in there somewhere? is this related to compact edition(the forum you posted) or a specific version...
June 21, 2011 at 6:02 am
ok first the concept:
you can use DATADD and DATEDIFF to fiddle with dates, keeping everything in the proper datetime variable.
test this to understand the concept:
select
--midnight of TODAY.
DATEADD(dd, DATEDIFF(dd,0,getdate()), 0),
--older...
June 20, 2011 at 11:47 am
i seem to remember that the biniaries that are the core srvice and stuff must be installed on the %systemdrive%, with no choice in the matter...you can move the databases,...
June 20, 2011 at 9:49 am
if you cannot use the builtin getdate() function for the current date and time,
you can stick the results into a temp table, and insert from there as well.
CREATE TABLE...
June 20, 2011 at 5:28 am
yes, opc.three's comment is the key; i testest it to make sure...for me i created a suite of tables and then 4 different functions and procs, all with GO statements...
June 16, 2011 at 7:21 am
see opc.three's post from the thread below;
i learned something here, since i was used to think that GO + BEGIN TRANS were not compatible, and now i know better:
http://www.sqlservercentral.com/Forums/Topic1125836-391-1.aspx#bm1125844
June 16, 2011 at 6:55 am
the hanging of the app from the command line is that messagebox dialog, guaranteed;
I hate to say this, but you'll have to check the 3rd party apps documentation to supress...
June 16, 2011 at 6:52 am
malachyrafferty (6/16/2011)
i have a 3rd party demo software called Crystal Command which lets you execute a crystal report in the background using command shell and save it/email it etc
what...
June 16, 2011 at 6:42 am
what's this post counter of which you speak?:-D
June 15, 2011 at 1:08 pm
Kevin for me, to get a table based on select into, I usually use a WHERE statement that will guarantee no rows:
SELECT * INTO ...
WHERE 1=2
that builds...
June 15, 2011 at 12:36 pm
Viewing 15 posts - 7,351 through 7,365 (of 13,460 total)