Viewing 15 posts - 7,366 through 7,380 (of 13,469 total)
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
SQLRNNR (6/15/2011)
June 15, 2011 at 12:33 pm
select convert(int,'.') --fails
select convert(money,'.') --0.00
so if your data is only a period, what value did you expect?
June 15, 2011 at 11:06 am
i think you'll have to switch to dynamic sql instead for stored procs,views and functions...
edit: just plain bad advice/not needed. see opc.three's excellent comment below.
June 15, 2011 at 9:37 am
any possibility it's not a table, but a view or proc or a poorly named constraint or something that happens to be named 'sample'?
select
schema_name(a.schema_id) as SchemaName,
a.name as ObjName,
a.type
from...
June 15, 2011 at 9:11 am
Satya_skj (6/15/2011)
You should review the SQL Server error log for date/time when this is happening and as explained you might review the number of users with SYSADMIN privileges.
actually, a user...
June 15, 2011 at 4:46 am
One Procedure To Rule Them All? Lord Of The Rings Style?
June 14, 2011 at 9:53 am
Viewing 15 posts - 7,366 through 7,380 (of 13,469 total)