Viewing 15 posts - 2,386 through 2,400 (of 13,469 total)
if you are sure you are not mispelling it, it's probabyl under a differnet schema, and you get partial matches.
you should explicitly name the schema and object name:
SELECT schema_name(schema_id) as...
April 14, 2014 at 8:57 am
i don't think it's the number of fields, i suspect it is the max length of a mailto link command; you are hitting the limit.
paste the string in a...
April 10, 2014 at 10:20 pm
if you created a table that captures login info, then i think you need to GRANT INSERT ON [dbo].[rvvlogindata] TO PUBLIC so that any login would not fail inside...
April 10, 2014 at 1:44 pm
you could simply sum the two together as a third column, i'd think:
SELECTComputerName AS 'Computer Name',
SUM(BlackWhiteTotalCount) AS 'Total B&W Pages',
SUM(FullColorTotalCount) AS 'Total Color Pages',
...
April 10, 2014 at 1:17 pm
as usual, it depends on what you are looking for: object level permissions? ie does user mydomain\lowell have SELECT permissions on HR.dbo.Payroll?
did you find any script that was close to...
April 9, 2014 at 2:42 pm
i wouldn't do this; the date format is valid, and since it goes into a date typed field, how does that adversely affect you?
what if an application passed...
April 9, 2014 at 11:08 am
there's a neat trick with FOR XML you can use:
declare @ttest table
(nItemintegernot null,
ctextvarchar(32)not null)
insert @ttest values (1, 'Row 1 text')
insert @ttest values (1, 'Row 2 text')
insert @ttest values (1, 'Row...
April 9, 2014 at 10:59 am
it seems to me that you might be able to replace the trigger with default values.
the WHERE criteria is huge in your example, and ALL must be zero to...
April 9, 2014 at 8:52 am
just stick the results in a temp table, where that table has the aliases already like this:
IF OBJECT_ID('tempdb.[dbo].[#tmp]') IS NOT NULL
DROP TABLE [dbo].[#tmp]
GO
CREATE TABLE [dbo].[#tmp] (
[GAMECODE] ...
April 9, 2014 at 8:02 am
run SELECT * FROM sys.traces.
you'll probably see two traces there; trace_id = 1 would be the default, and trace_id=2 would be your trace. look at the path column and confirm...
April 9, 2014 at 3:39 am
allaspects (4/7/2014)
I will post one if I find one...
April 7, 2014 at 10:32 am
take a look at this thread, which in turn can point to other threads.
there are three different methods , by three different authors, that can search all tables and columns...
April 7, 2014 at 10:10 am
the specific error is going to be important for anyone to help further. if you can provide more details, we can offer some suggestions.
did you send a test email from...
April 7, 2014 at 9:59 am
MyDoggieJessie (4/4/2014)
April 4, 2014 at 10:49 am
this is basically the same solution as Gails in a different format; it's just a CROSS JOINED CTE to get the variable instead of a direct sub select.
CREATE VIEW myVIEW
AS
WITH...
April 4, 2014 at 8:37 am
Viewing 15 posts - 2,386 through 2,400 (of 13,469 total)