Viewing 15 posts - 991 through 1,005 (of 13,445 total)
not sure what you are using the results for, but with so many values, i'd consider creatign a table with the permutations of the parameters you are filtering for.
maybe something...
May 18, 2016 at 7:26 am
etl2016 (5/18/2016)
Am new to MS environment, coming from a diff programming background.
I am setting up my home computer for a collection of MS development tools. Could you please let...
May 18, 2016 at 5:57 am
if you right click on SQL server Agent, and choose properties, what are the values you see here?
for me, with more than 60 jobs, some of them log backups ever...
May 17, 2016 at 12:25 pm
Sean Lange (5/17/2016)
Chitown (5/17/2016)
All, I need to refresh 1100+ DBs from Prod to QA. Is there any easy to accomplish this task?
You will become familiar with both the backup and...
May 17, 2016 at 11:33 am
In my neck of the woods in South Florida, On Jun 18, 2016 I'll be at the SQLSaturday #524 - South Florida 2016
This event is ridiculously close to my house,...
May 17, 2016 at 11:26 am
I've seen this before due to connection pooling where the database context becomes the default database, instead of the one in the connection string;
ie the connection to the database...
May 17, 2016 at 5:48 am
interesting issue datsun; here's how i would do it.
the detection for me would simply be to query sys.server_principals:
select 'EXEC sp_defaultlanguage @loginame=''' + name + ''',@language=''us_english''',*
from sys.server_principals
where type_desc in('SQL_LOGIN','WINDOWS_LOGIN','WINDOWS_GROUP')...
May 17, 2016 at 5:45 am
yeah i'm having trouble with the definition of Crashing Sql server;
I'd expect a web page not load with an error, or time out, but saying "crashing Sql Server" means what...
May 16, 2016 at 1:55 pm
wittke (5/16/2016)
All Applications using the SQL-2014-Server and I...
May 16, 2016 at 1:22 pm
Complete non-sequitur here guys, but I'm rather pleased with myself.
I just got my MCSA after taking 70-463 Implementing a Data Warehouse in SQL Server 2012/2014.
I had set a mental goal...
May 16, 2016 at 9:23 am
newbieuser (5/16/2016)
We would need to create tables in Oracle via Linked Server in SQL Server.. I tried select * into from table, I get the below error..
...
May 16, 2016 at 9:04 am
there's a DMV with that info:
select s.virtual_machine_type,
s.virtual_machine_type_desc
FROM sys.dm_os_sys_info s
May 13, 2016 at 11:16 am
a row_number() in a view might be a solution, since he wants a repeating value.
i think i would just a dd a calculated column that does the checksum; that would...
May 13, 2016 at 10:02 am
it's not the server, it's your individual connection that is the issue.
something related to Remote desktop must be setting your regional settings, which in turn affects your specific session setting
run...
May 13, 2016 at 9:23 am
first you are being a bad boy, changing dates to strings and back to dates.
if you simply select your code, instead of assigning it, you will see you are...
May 13, 2016 at 8:51 am
Viewing 15 posts - 991 through 1,005 (of 13,445 total)