Viewing 15 posts - 10,831 through 10,845 (of 13,469 total)
I agree with Pradeep ; the issue appears that the service is not running.
log into the server, go to control panel/Administrative Tools/Services, and try to start the SQL service again....
July 18, 2009 at 6:20 am
Just for fun, I wanted to try this out; I had "Recover4all Professional 2.25", some old undelete program I used to recover some files a while back.
I created a database...
July 18, 2009 at 5:24 am
not in the exact same operation, but you can use one backup to restore/create as many databases(each with a new name) that you want.
whether from the GUI, or via...
July 18, 2009 at 5:04 am
i believe i saw thread which stated that openquery against a linked server was faster for a linked server vs a query on your server using 4 partnaming conventions;
for example,...
July 16, 2009 at 4:27 pm
it should work with some minor tweaks:
after you've done the DECLARE @acumul_error varchar(100) or whatever it is, you need to initialize it as an empty string:
SET @acumul_error =''
in the...
July 16, 2009 at 12:24 pm
here's another option;
you can create a linked server for a Folder on the server, and each text file becomes a table. every file that is comma delimited can...
July 16, 2009 at 12:08 pm
both are views of course, created to help pull information about the metadata together.
the data in the two columns will often be the same; Information_Schema is a standard format...if you...
July 16, 2009 at 5:18 am
wrap any object name with brackets(or double quotes) if it doesn't follow normal naming conventions, has spaces in it, or are the same as a reserved word:
select * from [170703-test]
or
select...
July 15, 2009 at 9:02 pm
this is most likely the error:
if the table accountinfo has two or more rows, then you'd get the error you describe...maybe you need a WHERE statement to limit the rate...
July 15, 2009 at 8:44 pm
Thanks Michael and Robert;
I was stuck thinking I could append the default at the end, like i've done with PK/UQ/FK and check constraints.... instead of still part of the column...
July 15, 2009 at 10:02 am
it was just an example so i could get the named default constraint in there somewhere ...i didn't really think it through;
July 15, 2009 at 9:14 am
there's a lot of inner joins...which part do you weant to change into a subquery?
formatted for readability...the exisitng SQL made my eyes cross:
SELECT DISTINCT
Auditdata.ID,
ns.ProviderMaster_ID...
July 15, 2009 at 7:28 am
note that there are THREE places you can change collation at the server level, for each database, and then again for each column that is of type varchar/nvarchar/char/nchar/text.changing the...
July 15, 2009 at 7:17 am
Trout (7/14/2009)
how do you connect two different databases to one query.
ie databaseA and...
July 14, 2009 at 4:09 pm
Viewing 15 posts - 10,831 through 10,845 (of 13,469 total)