Viewing 15 posts - 12,076 through 12,090 (of 13,465 total)
I tried this and added acouple of different things, like timeouts and Content-Length to the headers...it made no difference...depending on the url it either failed witha 404, or the same...
August 4, 2008 at 11:22 am
I've had this snippet for a while, which i thought gets the number of processors on the server. this is the physical number of processors, and not whether they are...
August 1, 2008 at 8:21 am
awesome example michaela;
Still dealing with too much SQL 2000 here, and i wanted a nice working example to explore the new DDL trigger abilities.
I was able to read it,...
July 25, 2008 at 10:59 am
I had created a search proc I called "uglysearch", that found every varchar/char column, in every table, and searched for a specific string. similar to what you are doing, but...
July 25, 2008 at 9:58 am
i think this is just a result of spaces in the path/filename, right?
changing this part should work i think:
SET @folder = 'C:\Inetpub\wwwroot\Pergamum\Doc\International Banking\Caribbean'
SET @path =SUBSTRING(@folder ,...
July 25, 2008 at 7:41 am
sounds like you want the results of sp_who in a view for example?
simply sp_helptext sp_XXX, and read the code....maybe you can simply lift the code, or maybe you can convert...
July 22, 2008 at 11:19 am
you could also attach the spreadsheet as a linked server, and then select from it as well;
here's an example, which adds the linked server "MySpreadSheet", just change the path and...
July 21, 2008 at 11:35 am
it sounds like you are doing everything right...
here's a basic example of a select into:
select top 5 * into #Table1 from sysobjects
Select * from [#Table1]
that works fine on my...
July 21, 2008 at 9:54 am
doc_sewell (7/10/2008)
" select *from t where id...
July 11, 2008 at 5:37 am
I'm pretty sure that error 2147217873 is a foreign key violation;
ie
Error Code : -2147217873
INSERT statement conflicted with COLUMN FOREIGN KEY constraint 'FK_ForeignKeyName'. The conflict occurred in database 'DatabaseName',...
June 24, 2008 at 11:12 am
As you already suspected, In SQL2000, there's not much you can do.
If all your databases have the database recovery model set to "FULL" instead of "SIMPLE", you could use a...
June 24, 2008 at 11:08 am
Stephen is kind of right, as long as you ignore some stuff.
unless you've added a primary key to the table, because Access is file based, Access really does keep the...
June 12, 2008 at 9:00 pm
from Query analyzer or SQL 2005 Management Studio:
exec AddSystemEvent 12,'06/09/2008',-21,'Some Bad Event Occured that probably should not have.'
note the scanner id example i put in an arbitrary number of 12,...
June 9, 2008 at 5:54 pm
maybe i'm just misreading it, but you want to insert just 255 chars right?
CREATE PROCEDURE [dbo].[AddSystemEvent]
(
@ScannerID As Int,
@TimeDate DateTime,
@EventID As Int,
@EventDesc NVarchar(256)
)
AS
Begin
Insert Into tb_system_event
(Scanner_ID, Time_Date, Event_ID, Event_Description)
Values (@ScannerID, @TimeDate,...
June 9, 2008 at 4:48 pm
sazzemokhalef (6/9/2008)
HI Guysinstalling SQL server enterprise edition on Windows XP is possible!
I'm sure! I will put the solution in a few days!
installing Enterprise Edition of SQL Server on a non-Server...
June 9, 2008 at 5:20 am
Viewing 15 posts - 12,076 through 12,090 (of 13,465 total)