Viewing 15 posts - 5,206 through 5,220 (of 13,465 total)
typically, you want to insert into a temp table, so you get everything in a single table for ease of review.
this seems to have worked for me:
USE master;
GO
IF (SELECT OBJECT_ID('Tempdb.dbo.#TBHELPUSER'))...
July 12, 2012 at 10:51 am
in a programming language, you could use a thread pool and spawn mulktiple asyncronous commands, like the code you are using to refresh each excel spreadsheet.
you'd have to convert from...
July 12, 2012 at 9:13 am
how many instances of SQL are installed on your dev machine?
could it be that another isntance is answering the default port of 1433?
What i'm saying is that maybe you changed...
July 12, 2012 at 6:29 am
if the SQL browser service is running, any connections that ask for the server will be directed to the proper port.
if you stop the SQL Browser service, then the port...
July 12, 2012 at 6:11 am
a table created inside a procedure is destroyed when the procedure completes.
if you want to a proc to load your data, you have the following options:
1. have the same procedure...
July 12, 2012 at 5:47 am
JoseACJr (7/12/2012)
I will create an application to list the columns of my database, what the difference between sys.columns and syscolumns ?
They are not tables? which tables these views...
July 12, 2012 at 5:39 am
and a code example of what Jason was talking about:
sp_msForEachDB 'select ''?'' AS DatabaseName,
...
July 11, 2012 at 2:59 pm
if you leave the schema name to auto resolve, does it work, like this?
SELECT * FROM [LINKSERVER_1].[ActualDBName]..DAYPART
July 11, 2012 at 12:22 pm
deprecation?
last i heard, the views were there to stay, but could be changed;
some article i read said any changes would be things like adding columns to the end of the...
July 11, 2012 at 11:55 am
the opposite question for me really, is what advantage would there be to use the information_schema instead of the sys tables?
typically there's more information available in the SQL specific...
July 11, 2012 at 11:43 am
here's what i use , a procedure i built called sp_UglySearch.
since you are searching every table/column for text, this is slow, and any tables with a Million rows are going...
July 11, 2012 at 6:19 am
i took over a screwed up database like that once; the table names and column names had been obfuscated, i guess in order to protect someones proprietary schema; they took...
July 11, 2012 at 6:10 am
sounds like two things: this database was upgraded from SQL 2000, and someone had ran "EXEC master.dbo.sp_configure 'allow updates', '1'", and deleted the row from sysobjects directly, without deleting the...
July 10, 2012 at 2:49 pm
CREATE PROCEDURE [dbo].[DR_Premier_PO_O]...
you are just missing the word create; after that my syntax issues went away.
i got 4 errors total, and only the last matched your error.
Msg 156, Level 15,...
July 10, 2012 at 1:51 pm
Viewing 15 posts - 5,206 through 5,220 (of 13,465 total)