Viewing 15 posts - 211 through 225 (of 789 total)
You could maybe install a printer driver that prints to a JPEG. Neevia Technology claims to have one.
Cheers,
- Mark
December 5, 2003 at 7:02 pm
You could try something like:
declare @theNums varchar(1000) set @theNums = '3,4,6,9'
update tempSalesDetail
set SET BTI = 1
where ',' + @theNums + ',' like '%,' +...
December 5, 2003 at 7:00 pm
Just check for a non-zero value for @@ERROR. 3013 is returned for "not a valid backup set"
Cheers,
- Mark
December 5, 2003 at 4:00 pm
Use SQL Profiler. Trace the object:deleted event and possibly some filtering so you can just isolate this one login.
Cheers,
- Mark
December 3, 2003 at 1:04 am
Some problems often come up with FT Indexing because builtin/administrators has been removed, or removed from the sysadmin role.
Cheers,
- Mark
December 1, 2003 at 1:27 pm
I'm afraid your strategy won't work. The receiving logshipped database must remain in "loading" or "standby" state. Any changes will break the log shipping chain.
Archiving will need to...
December 1, 2003 at 1:21 pm
If you have a database set to AUTOCLOSE (the default for SQL Personal Edition, but needing to be explicitly set for other editions) then yes, when the last user has...
November 28, 2003 at 12:59 pm
Here's a crude (no error checking) bit of code to demonstrate a loop to do it:
set rowcount 5000
declare @rows int
while 1 = 1
...
November 28, 2003 at 1:55 am
Dinesh,
I'm not sure you tried inserting data directly into the cell of the "Open Table" panel as Kokyan has done.
Yes, if you run the INSERT (as you have posted) in...
November 28, 2003 at 1:50 am
If you want to avoid the requirement for batch separators, you could create the IDENTITY field in the SELECT INTO statement. EG:
SELECT IDENTITY(INT, 1,1) AS AUTOID, MSG INTO #TMPTBL...
November 26, 2003 at 9:03 pm
Oops. Was that QOD 26/11 was it? And there's already a thread discussing it? And it's already been adequately explained?
I'll just crawl back under my rock and...
November 26, 2003 at 3:30 pm
The trace does write straight to the file, but only in chunks of 128k or so (or maybe depends on how your disk is formatted). Whether SQL explicitly buffers it...
November 26, 2003 at 3:22 pm
Aaaargh!
OK, who else has got a defect BOL?
Cheers,
- Mark
November 26, 2003 at 2:48 pm
In 95% of cases I research it first, whether that's looking in BOL, testing, or using sqlservercentral's new-fangled google search.
My brain's storage is reserved for important stuff, like my wife's...
November 25, 2003 at 2:52 pm
Definitely.
This is easiest to set up with the Import/Export Wizard, choosing an Excel destination and, in the "transformations" dialog, chossing to drop and recreate destination table.
Cheers,
- Mark
November 25, 2003 at 2:34 pm
Viewing 15 posts - 211 through 225 (of 789 total)